summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2004-08-19 11:31:58 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2004-08-19 11:31:58 (GMT)
commit336e85f56a87f2216855ca8a5771755f480ae7db (patch)
treeac9ca920703def475db825308caa688f3bd6b475 /Misc
parent4d4dfb7a2b3bf4ed49a9f72ae8b802280b4e6154 (diff)
downloadcpython-336e85f56a87f2216855ca8a5771755f480ae7db.zip
cpython-336e85f56a87f2216855ca8a5771755f480ae7db.tar.gz
cpython-336e85f56a87f2216855ca8a5771755f480ae7db.tar.bz2
Patch #900727: Add Py_InitializeEx to allow embedding without signals.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f8f5088..1c72294 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 2.4 alpha 3?
Core and builtins
-----------------
+- Py_InitializeEx has been added.
+
- Fix the order of application of decorators. The proper order is bottom-up;
the first decorator listed is the last one called.