Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d860d5c

Browse files
committed
Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.
1 parent 1761fa9 commit d860d5c

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

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
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
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 @@ What's New in Python 3.3.4 release candidate 1?
1010
Core and Builtins
1111
-----------------
1212

13+
- Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.
14+
1315
- Issue #19729: In str.format(), fix recursive expansion in format spec.
1416

1517
- Issue #19638: Fix possible crash / undefined behaviour from huge (more than 2

0 commit comments

Comments
 (0)