Searched refs:PyObject_Repr (Results 1 – 25 of 39) sorted by relevance
12
/third_party/python/Objects/stringlib/ |
D | stringdefs.h | 26 #define STRINGLIB_TOASCII PyObject_Repr
|
D | unicode_format.h | 769 return PyObject_Repr(obj); in do_conversion()
|
/third_party/python/Doc/c-api/ |
D | object.rst | 163 .. c:function:: PyObject* PyObject_Repr(PyObject *o) 179 As :c:func:`PyObject_Repr`, compute a string representation of object *o*, but 181 :c:func:`PyObject_Repr` with ``\x``, ``\u`` or ``\U`` escapes. This generates 182 a string similar to that returned by :c:func:`PyObject_Repr` in Python 2.
|
D | set.rst | 19 :c:func:`PyObject_Repr`, :c:func:`PyObject_IsTrue`, :c:func:`PyObject_Print`, and
|
/third_party/python/Python/ |
D | context.c | 913 PyObject *name = PyObject_Repr(self->var_name); in contextvar_tp_repr() 928 PyObject *def = PyObject_Repr(self->var_default); in contextvar_tp_repr() 1141 PyObject *var = PyObject_Repr((PyObject *)self->tok_var); in token_tp_repr()
|
D | ast_unparse.c | 72 PyObject *repr = PyObject_Repr(obj); in append_repr()
|
D | bltinmodule.c | 2261 return PyObject_Repr(obj); in builtin_repr()
|
/third_party/python/Objects/ |
D | object.c | 295 s = PyObject_Repr(op); in PyObject_Print() 409 PyObject_Repr(PyObject *v) in PyObject_Repr() function 484 return PyObject_Repr(v); in PyObject_Str() 526 repr = PyObject_Repr(v); in PyObject_ASCII()
|
D | fileobject.c | 135 value = PyObject_Repr(v); in PyFile_WriteObject()
|
D | unionobject.c | 315 r = PyObject_Repr(p); in union_repr_item()
|
D | structseq.c | 298 PyObject *repr = PyObject_Repr(value); in structseq_repr()
|
D | genericaliasobject.c | 102 r = PyObject_Repr(p); in ga_repr_item()
|
D | tupleobject.c | 345 s = PyObject_Repr(v->ob_item[i]); in tuplerepr()
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | map_container.cc | 512 return PyObject_Repr(dict.get()); in ScalarMapToStr() 751 return PyObject_Repr(dict.get()); in MessageMapToStr()
|
D | repeated_composite_container.cc | 370 return PyObject_Repr(list.get()); in Subscript()
|
D | repeated_scalar_container.cc | 662 return PyObject_Repr(list.get()); in Subscript()
|
D | message.cc | 575 PyObject* repr = PyObject_Repr(arg); in FormatTypeError() 762 PyObject* repr = PyObject_Repr(arg); in CheckString()
|
/third_party/python/Include/ |
D | object.h | 265 PyAPI_FUNC(PyObject *) PyObject_Repr(PyObject *);
|
/third_party/python/Modules/ |
D | _lsprof.c | 173 PyObject *res = PyObject_Repr(mo); in normalizeUserObj()
|
D | _operator.c | 1604 PyObject *onerepr = PyObject_Repr(PyTuple_GET_ITEM(mc->args, i)); in methodcaller_repr()
|
D | gcmodule.c | 2150 repr = PyObject_Repr(gcstate->garbage); in _PyGC_DumpShutdownStats()
|
/third_party/python/PC/ |
D | python3dll.c | 468 EXPORT_FUNC(PyObject_Repr)
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 512 function,PyObject_Repr,3.2,
|
D | refcounts.dat | 1771 PyObject_Repr:PyObject*::+1: 1772 PyObject_Repr:PyObject*:o:0:
|
/third_party/python/Misc/ |
D | stable_abi.txt | 1105 function PyObject_Repr
|
12