summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Hammond <mhammond@skippinet.com.au>2002-07-22 12:53:16 +0000
committerMark Hammond <mhammond@skippinet.com.au>2002-07-22 12:53:16 +0000
commit0cd16b9c203714205fe6b40eb0a7ab9465c20af6 (patch)
treec0d7dbe3cd1feffbccc3aef239105709c3cf1ddb
parentf74a9ed3cb98edbdf660cbd3c8d8f870ca8442fb (diff)
downloadcpython-0cd16b9c203714205fe6b40eb0a7ab9465c20af6.tar.gz
Add note about DL_IMPORT deprecation.
[ 583894 ] doc DL_IMPORT/DL_EXPORT changes
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 99d2d90955..3156376a4a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -5,6 +5,10 @@ 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,