commit | fdb864832720a6a1b6a58462e6e9d0b4226beb33 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Aug 14 21:20:32 2002 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Aug 14 21:20:32 2002 +0000 |
tree | a98aeb52196dcfa955a79317142a6e6b2a484967 | |
parent | 8b73542cf539bf44d847b4381e53f96d47b4e65a [diff] [blame] |
Add news about Fred's change to Py_InitModule4().
diff --git a/Misc/NEWS b/Misc/NEWS index 0a97187..3e9e1aa 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -482,6 +482,10 @@ 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.