File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed 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 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
9999struct _inittab {
100100 const char * name ; /* ASCII encoded string */
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ Release date: 2014-01-05
1010Core 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
You can’t perform that action at this time.
0 commit comments