diff options
author | Guido van Rossum <guido@python.org> | 2002-09-25 15:02:44 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-09-25 15:02:44 (GMT) |
commit | 6b3db551beaa3961a5b931c857e208226f7f8e8b (patch) | |
tree | a022bbd0b1c7b7ac9114d14cdbcd069eeb2a60e2 | |
parent | fa8218143691f46195b7bc5c0b66fb5d036c4271 (diff) | |
download | cpython-6b3db551beaa3961a5b931c857e208226f7f8e8b.zip cpython-6b3db551beaa3961a5b931c857e208226f7f8e8b.tar.gz cpython-6b3db551beaa3961a5b931c857e208226f7f8e8b.tar.bz2 |
Disable building of the fpectl module -- it's dangerous or useless
except in the hands of experts. Will backport to 2.2.2.
-rw-r--r-- | Misc/NEWS | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -499,10 +499,13 @@ Tools/Demos Build ----- +- The fpectl module is not built by default; it's dangerous or useless + except in the hands of experts. + - 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. + 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. |