summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-08-14 21:20:32 (GMT)
committerGuido van Rossum <guido@python.org>2002-08-14 21:20:32 (GMT)
commitfdb864832720a6a1b6a58462e6e9d0b4226beb33 (patch)
treea98aeb52196dcfa955a79317142a6e6b2a484967 /Misc
parent8b73542cf539bf44d847b4381e53f96d47b4e65a (diff)
downloadcpython-fdb864832720a6a1b6a58462e6e9d0b4226beb33.zip
cpython-fdb864832720a6a1b6a58462e6e9d0b4226beb33.tar.gz
cpython-fdb864832720a6a1b6a58462e6e9d0b4226beb33.tar.bz2
Add news about Fred's change to Py_InitModule4().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0a97187..3e9e1aa 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.