Home
last modified time | relevance | path

Searched refs:structmodule (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Modules/
D_testbuffer.c11 static PyObject *structmodule = NULL; variable
581 unpack_from = PyObject_GetAttrString(structmodule, "unpack_from"); in unpack_single()
2846 structmodule = PyImport_ImportModule("struct"); in PyInit__testbuffer()
2847 if (structmodule == NULL) in PyInit__testbuffer()
2850 Struct = PyObject_GetAttrString(structmodule, "Struct"); in PyInit__testbuffer()
2851 calcsize = PyObject_GetAttrString(structmodule, "calcsize"); in PyInit__testbuffer()
/external/python/cpython3/Objects/
Dmemoryobject.c1921 PyObject *structmodule; /* XXX cache these two */ in struct_get_unpacker() local
1927 structmodule = PyImport_ImportModule("struct"); in struct_get_unpacker()
1928 if (structmodule == NULL) in struct_get_unpacker()
1931 Struct = PyObject_GetAttrString(structmodule, "Struct"); in struct_get_unpacker()
1932 Py_DECREF(structmodule); in struct_get_unpacker()
/external/python/cpython2/RISCOS/
DMakefile297 @.^.Lib.struct/pyd: @.^.Modules.o.structmodule s.linktab
298 $(MAKEDLK) -d @.^.Lib.struct/pyd -s s.linktab -o @.^.Modules.o.structmodule -e initstruct
/external/python/cpython2/PC/os2vacpp/
Dmakefile.omk782 structmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Dmakefile1075 structmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
/external/python/cpython2/Misc/
DHISTORY12307 - Added doc strings to string.py, stropmodule.c, structmodule.c,
/external/python/cpython3/Misc/
DHISTORY29686 - Added doc strings to string.py, stropmodule.c, structmodule.c,