summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-07-22 13:21:10 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2002-07-22 13:21:10 (GMT)
commit1389f3e059e9df4286cfcd172ae66573fb057154 (patch)
treedfdf414020a57cbec8847b10c2a2257c66dcc3a0 /Misc/NEWS
parentbba23a897ef73e8f68e5ccd4485e813dca6e99b8 (diff)
downloadcpython-1389f3e059e9df4286cfcd172ae66573fb057154.zip
cpython-1389f3e059e9df4286cfcd172ae66573fb057154.tar.gz
cpython-1389f3e059e9df4286cfcd172ae66573fb057154.tar.bz2
Move DL_IMPORT/DL_EXPORT to Build section, I think this is the correct place
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS9
1 files changed, 5 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3156376..95fad62 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -5,10 +5,6 @@ XXX Release date: DD-MMM-2002 XXX
Type/class unification and new-style classes
Core and builtins
-- The public Python C API will generally be declared using PyAPI_FUNC
- and PyAPI_DATA macros, while Python extension module init functions
- will be declared with PyMODINIT_FUNC. DL_EXPORT/DL_IMPORT macros
- are deprecated.
- Ctrl+C handling on Windows has been made more consistent with
other platforms. KeyboardInterrupt can now reliably be caught,
@@ -308,6 +304,11 @@ Tools/Demos
Build
+- The public Python C API will generally be declared using PyAPI_FUNC
+ and PyAPI_DATA macros, while Python extension module init functions
+ will be declared with PyMODINIT_FUNC. DL_EXPORT/DL_IMPORT macros
+ are deprecated.
+
- A bug was fixed that could cause COUNT_ALLOCS builds to segfault, or
get into infinite loops, when a new-style class got garbage-collected.
Unfortunately, to avoid this, the way COUNT_ALLOCS works requires