diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-12-10 00:23:22 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-12-10 00:23:22 (GMT) |
commit | 7821ff3789d4a0f8dbf3c51320ba89f34f818769 (patch) | |
tree | c43cf0d8ad15b288d1d361656cb6f33099ddb17d | |
parent | 5493d5ea2afec8a1ff3227e08e908c6e433638cc (diff) | |
download | cpython-7821ff3789d4a0f8dbf3c51320ba89f34f818769.zip cpython-7821ff3789d4a0f8dbf3c51320ba89f34f818769.tar.gz cpython-7821ff3789d4a0f8dbf3c51320ba89f34f818769.tar.bz2 |
Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.
-rw-r--r-- | Include/import.h | 4 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Include/import.h b/Include/import.h index 1b7fe0a..89f51b5 100644 --- a/Include/import.h +++ b/Include/import.h @@ -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. |