OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ctor_args
(Results
1 - 3
of
3
) sorted by null
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_csv.c
522
PyObject *
ctor_args
;
local
525
ctor_args
= Py_BuildValue(dialect_inst ? "(O)" : "()", dialect_inst);
526
if (
ctor_args
== NULL)
528
dialect = PyObject_Call((PyObject *)&Dialect_Type,
ctor_args
, kwargs);
529
Py_DECREF(
ctor_args
);
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_csv.c
512
PyObject *
ctor_args
;
local
515
ctor_args
= Py_BuildValue(dialect_inst ? "(O)" : "()", dialect_inst);
516
if (
ctor_args
== NULL)
518
dialect = PyObject_Call((PyObject *)&Dialect_Type,
ctor_args
, kwargs);
519
Py_DECREF(
ctor_args
);
[
all
...]
/external/python/cpython2/Modules/
_csv.c
525
PyObject *
ctor_args
;
local
528
ctor_args
= Py_BuildValue(dialect_inst ? "(O)" : "()", dialect_inst);
529
if (
ctor_args
== NULL)
531
dialect = PyObject_Call((PyObject *)&Dialect_Type,
ctor_args
, kwargs);
532
Py_DECREF(
ctor_args
);
[
all
...]
Completed in 646 milliseconds