From: Guido van Rossum Date: Wed, 14 Aug 2002 21:20:32 +0000 (+0000) Subject: Add news about Fred's change to Py_InitModule4(). X-Git-Tag: v2.3c1~4457 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fdb864832720a6a1b6a58462e6e9d0b4226beb33;p=python Add news about Fred's change to Py_InitModule4(). --- diff --git a/Misc/NEWS b/Misc/NEWS index 0a97187849..3e9e1aa86f 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.