Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.
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(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;
diff --git a/Misc/NEWS b/Misc/NEWS
index e3abaec..8ac5672 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,8 @@
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.