Searched refs:PyObject_Repr (Results 1 – 25 of 46) sorted by relevance
12
/external/python/cpython2/Objects/ |
D | sliceobject.c | 237 PyString_ConcatAndDel(&s, PyObject_Repr(r->start)); in slice_repr() 239 PyString_ConcatAndDel(&s, PyObject_Repr(r->stop)); in slice_repr() 241 PyString_ConcatAndDel(&s, PyObject_Repr(r->step)); in slice_repr()
|
D | exceptions.c | 162 repr_suffix = PyObject_Repr(self->args); in BaseException_repr() 671 repr = PyObject_Repr(self->filename); in EnvironmentError_str() 902 repr = PyObject_Repr(self->filename); in WindowsError_str() 1274 return PyObject_Repr(PyTuple_GET_ITEM(self->args, 0)); in KeyError_str()
|
D | object.c | 305 s = PyObject_Repr(op); in internal_print() 364 PyObject_Repr(PyObject *v) in PyObject_Repr() function 424 return PyObject_Repr(v); in _PyObject_Str() 537 res = PyObject_Repr(v); in PyObject_Unicode()
|
D | intobject.c | 382 srepr = PyObject_Repr(sobj); in PyInt_FromString() 1087 srepr = PyObject_Repr(x); in int_new()
|
D | structseq.c | 271 repr = PyObject_Repr(val); in structseq_repr()
|
D | dictobject.c | 1141 s = PyObject_Repr(key); in dict_repr() 1143 PyString_ConcatAndDel(&s, PyObject_Repr(value)); in dict_repr() 2951 seq_str = PyObject_Repr(seq); in dictview_repr()
|
D | tupleobject.c | 293 s = PyObject_Repr(v->ob_item[i]); in tuplerepr()
|
D | fileobject.c | 653 name = PyObject_Repr(f->f_name); in file_repr() 2596 value = PyObject_Repr(v); in PyFile_WriteObject()
|
/external/python/cpython2/Modules/ |
D | future_builtins.c | 59 return PyObject_Repr(v); in builtin_ascii()
|
D | _lsprof.c | 214 PyObject *res = PyObject_Repr(mo); in normalizeUserObj()
|
D | itertoolsmodule.c | 3399 cnt_repr = PyObject_Repr(lz->long_cnt); in count_repr() 3408 step_repr = PyObject_Repr(lz->long_step); in count_repr() 3744 objrepr = PyObject_Repr(ro->element); in repeat_repr()
|
/external/python/cpython2/Include/ |
D | object.h | 461 PyAPI_FUNC(PyObject *) PyObject_Repr(PyObject *); 533 #define PyObject_REPR(obj) PyString_AS_STRING(PyObject_Repr(obj))
|
/external/python/cpython2/Doc/c-api/ |
D | float.rst | 120 Use :func:`PyObject_Repr` or :func:`PyOS_double_to_string` instead.
|
D | set.rst | 21 :c:func:`PyObject_Repr`, :c:func:`PyObject_IsTrue`, :c:func:`PyObject_Print`, and
|
/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 322 PyObject_Repr
|
/external/python/cpython2/Modules/_io/ |
D | textio.c | 2088 PyObject *repr = PyObject_Repr(cookieObj); in textiowrapper_seek() 2385 encrepr = PyObject_Repr(self->encoding); in textiowrapper_repr() 2390 encrepr = PyObject_Repr(self->encoding); in textiowrapper_repr() 2391 namerepr = PyObject_Repr(nameobj); in textiowrapper_repr()
|
D | _iomodule.c | 318 PyObject *repr = PyObject_Repr(file); in io_open()
|
D | fileio.c | 936 PyObject *repr = PyObject_Repr(nameobj); in fileio_repr()
|
D | bufferedio.c | 267 PyObject *r = PyObject_Repr((PyObject *) self); in _enter_buffered_busy() 1223 PyObject *repr = PyObject_Repr(nameobj); in buffered_repr()
|
/external/python/cpython2/Python/ |
D | Python-ast.c | 621 PyObject *s = PyObject_Repr(obj); in obj2ast_int() 639 PyObject *s = PyObject_Repr(obj); in obj2ast_bool() 3474 tmp = PyObject_Repr(obj); in obj2ast_mod() 4786 tmp = PyObject_Repr(obj); in obj2ast_stmt() 5914 tmp = PyObject_Repr(obj); in obj2ast_expr() 5977 tmp = PyObject_Repr(obj); in obj2ast_expr_context() 6116 tmp = PyObject_Repr(obj); in obj2ast_slice() 6147 tmp = PyObject_Repr(obj); in obj2ast_boolop() 6258 tmp = PyObject_Repr(obj); in obj2ast_operator() 6305 tmp = PyObject_Repr(obj); in obj2ast_unaryop() [all …]
|
D | compile.c | 1233 PyString_AS_STRING(PyObject_Repr(c->u->u_ste->ste_id)), in get_ref_type() 1235 PyString_AS_STRING(PyObject_Repr(c->u->u_ste->ste_symbols)), in get_ref_type() 1236 PyString_AS_STRING(PyObject_Repr(c->u->u_varnames)), in get_ref_type() 1237 PyString_AS_STRING(PyObject_Repr(c->u->u_names)) in get_ref_type() 1289 PyString_AS_STRING(PyObject_Repr(name)), in compiler_make_closure() 1293 PyString_AS_STRING(PyObject_Repr(co->co_freevars))); in compiler_make_closure()
|
D | peephole.c | 210 newconst = PyObject_Repr(v); in fold_unaryops_on_constants()
|
D | ceval.c | 1366 x = PyObject_Repr(v); in PyEval_EvalFrameEx() 2181 t = PyObject_Repr(w); in PyEval_EvalFrameEx() 2201 t = PyObject_Repr(w); in PyEval_EvalFrameEx() 2295 t = PyObject_Repr(w); in PyEval_EvalFrameEx()
|
/external/python/cpython2/Objects/stringlib/ |
D | string_format.h | 849 return PyObject_Repr(obj); in do_conversion()
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 446 "PyObject_Repr"
|
12