mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
Merge Python 3.4.0rc1 release branch.
This commit is contained in:
commit
3f99504c08
22 changed files with 198 additions and 64 deletions
|
|
@ -25,6 +25,7 @@ PyAPI_FUNC(const char *) PyModule_GetFilename(PyObject *);
|
|||
PyAPI_FUNC(PyObject *) PyModule_GetFilenameObject(PyObject *);
|
||||
#ifndef Py_LIMITED_API
|
||||
PyAPI_FUNC(void) _PyModule_Clear(PyObject *);
|
||||
PyAPI_FUNC(void) _PyModule_ClearDict(PyObject *);
|
||||
#endif
|
||||
PyAPI_FUNC(struct PyModuleDef*) PyModule_GetDef(PyObject*);
|
||||
PyAPI_FUNC(void*) PyModule_GetState(PyObject*);
|
||||
|
|
|
|||
|
|
@ -33,7 +33,6 @@ typedef struct _is {
|
|||
int codecs_initialized;
|
||||
int fscodec_initialized;
|
||||
|
||||
|
||||
#ifdef HAVE_DLOPEN
|
||||
int dlopenflags;
|
||||
#endif
|
||||
|
|
@ -41,6 +40,7 @@ typedef struct _is {
|
|||
int tscdump;
|
||||
#endif
|
||||
|
||||
PyObject *builtins_copy;
|
||||
} PyInterpreterState;
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue