File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -86,15 +86,15 @@ PyAPI_FUNC(int) _PyImport_ReleaseLock(void);
8686
8787PyAPI_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
9999struct _inittab {
100100 char * name ; /* ASCII encoded string */
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ What's New in Python 3.3.4 release candidate 1?
1010Core 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
You can’t perform that action at this time.
0 commit comments