From fdb864832720a6a1b6a58462e6e9d0b4226beb33 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 14 Aug 2002 21:20:32 +0000 Subject: [PATCH] Add news about Fred's change to Py_InitModule4(). --- Misc/NEWS | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Misc/NEWS b/Misc/NEWS index 0a97187849f..3e9e1aa86fb 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -482,6 +482,10 @@ Build C API +- The Py_InitModule*() functions now accept NULL for the 'methods' + argument. Modules without global functions are becoming more common + now that factories can be types rather than functions. + - New C API PyUnicode_FromOrdinal() which exposes unichr() at C level.