[issue35586] Open pyexpat compilation, Make shows error(missing separator)

2018-12-25 Thread kbengine
New submission from kbengine : Python3.7.2 My compilation steps: 1. Modify Modules/Setup.dist, open pyexpat pyexpat expat/xmlparse.c expat/xmlrole.c expat/xmltok.c pyexpat.c -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DXML_POOR_ENTROPY=1 -DUSE_PYEXPAT_CAPI 2. ./configure 3. make Makefile

[issue22676] _pickle.c

2014-10-20 Thread kbengine
New submission from kbengine: I have an application, the use of Python3.2.3 development. When I upgrade to Python3.4.2, found a problem. I have an extended xxx.c (c-python) module, I call pickle to serialize and deserialize, _pickle.c calls the whichmodule to look for this module, The final

[issue22676] Creating the string representation of a module is slower

2014-10-20 Thread kbengine
kbengine added the comment: This is a misunderstanding, getattribute (PyObject *obj, PyObject *name, int allow_qualname) is the Python code, in the Python/Modules/_pickle.c (1538). Do efficiency is decreased a lot. -- status: pending - open