(Merge 3.3) Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.
This commit is contained in:
@@ -86,15 +86,15 @@ PyAPI_FUNC(int) _PyImport_ReleaseLock(void);
|
|||||||
|
|
||||||
PyAPI_FUNC(void) _PyImport_ReInitLock(void);
|
PyAPI_FUNC(void) _PyImport_ReInitLock(void);
|
||||||
|
|
||||||
PyAPI_FUNC(PyObject *)_PyImport_FindBuiltin(
|
PyAPI_FUNC(PyObject *) _PyImport_FindBuiltin(
|
||||||
const char *name /* UTF-8 encoded string */
|
const char *name /* UTF-8 encoded string */
|
||||||
);
|
);
|
||||||
PyAPI_FUNC(PyObject *)_PyImport_FindExtensionObject(PyObject *, PyObject *);
|
PyAPI_FUNC(PyObject *) _PyImport_FindExtensionObject(PyObject *, PyObject *);
|
||||||
PyAPI_FUNC(int)_PyImport_FixupBuiltin(
|
PyAPI_FUNC(int) _PyImport_FixupBuiltin(
|
||||||
PyObject *mod,
|
PyObject *mod,
|
||||||
const char *name /* UTF-8 encoded string */
|
const char *name /* UTF-8 encoded string */
|
||||||
);
|
);
|
||||||
PyAPI_FUNC(int)_PyImport_FixupExtensionObject(PyObject*, PyObject *, PyObject *);
|
PyAPI_FUNC(int) _PyImport_FixupExtensionObject(PyObject*, PyObject *, PyObject *);
|
||||||
|
|
||||||
struct _inittab {
|
struct _inittab {
|
||||||
const char *name; /* ASCII encoded string */
|
const char *name; /* ASCII encoded string */
|
||||||
|
|||||||
@@ -10,6 +10,8 @@ Release date: 2014-01-05
|
|||||||
Core and Builtins
|
Core and Builtins
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.
|
||||||
|
|
||||||
- Issue #19736: Add module-level statvfs constants defined for GNU/glibc
|
- Issue #19736: Add module-level statvfs constants defined for GNU/glibc
|
||||||
based systems.
|
based systems.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user