Skip to content

Commit b077c05

Browse files
committed
(Merge 3.3) Issue python#19932: Fix typo in import.h, missing whitespaces in function prototypes.
2 parents 29e6454 + d860d5c commit b077c05

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

Include/import.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,15 @@ PyAPI_FUNC(int) _PyImport_ReleaseLock(void);
8686

8787
PyAPI_FUNC(void) _PyImport_ReInitLock(void);
8888

89-
PyAPI_FUNC(PyObject *)_PyImport_FindBuiltin(
89+
PyAPI_FUNC(PyObject *) _PyImport_FindBuiltin(
9090
const char *name /* UTF-8 encoded string */
9191
);
92-
PyAPI_FUNC(PyObject *)_PyImport_FindExtensionObject(PyObject *, PyObject *);
93-
PyAPI_FUNC(int)_PyImport_FixupBuiltin(
92+
PyAPI_FUNC(PyObject *) _PyImport_FindExtensionObject(PyObject *, PyObject *);
93+
PyAPI_FUNC(int) _PyImport_FixupBuiltin(
9494
PyObject *mod,
9595
const char *name /* UTF-8 encoded string */
9696
);
97-
PyAPI_FUNC(int)_PyImport_FixupExtensionObject(PyObject*, PyObject *, PyObject *);
97+
PyAPI_FUNC(int) _PyImport_FixupExtensionObject(PyObject*, PyObject *, PyObject *);
9898

9999
struct _inittab {
100100
const char *name; /* ASCII encoded string */

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Release date: 2014-01-05
1010
Core and Builtins
1111
-----------------
1212

13+
- Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.
14+
1315
- Issue #19736: Add module-level statvfs constants defined for GNU/glibc
1416
based systems.
1517

0 commit comments

Comments
 (0)