Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.
This commit is contained in:
parent
5493d5ea2a
commit
7821ff3789
|
@ -40,8 +40,8 @@ PyAPI_FUNC(struct filedescr *) _PyImport_FindModule(
|
|||
PyAPI_FUNC(int) _PyImport_IsScript(struct filedescr *);
|
||||
PyAPI_FUNC(void) _PyImport_ReInitLock(void);
|
||||
|
||||
PyAPI_FUNC(PyObject *)_PyImport_FindExtension(char *, char *);
|
||||
PyAPI_FUNC(PyObject *)_PyImport_FixupExtension(char *, char *);
|
||||
PyAPI_FUNC(PyObject *) _PyImport_FindExtension(char *, char *);
|
||||
PyAPI_FUNC(PyObject *) _PyImport_FixupExtension(char *, char *);
|
||||
|
||||
struct _inittab {
|
||||
char *name;
|
||||
|
|
|
@ -9,6 +9,8 @@ What's New in Python 2.7.7?
|
|||
Core and Builtins
|
||||
-----------------
|
||||
|
||||
- Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.
|
||||
|
||||
- Issue #19638: Fix possible crash / undefined behaviour from huge (more than 2
|
||||
billion characters) input strings in _Py_dg_strtod.
|
||||
|
||||
|
|
Loading…
Reference in New Issue