summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-12-02 16:52:32 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-12-02 16:52:32 (GMT)
commitf78b1c6573a7e4a30f799fd28acd414e5deb140d (patch)
treef9bd6ff9ecca07e3b9365cdb90de24bcfd813602 /Misc
parent2137b6aa997209ac3529c439f82383de0219940d (diff)
downloadcpython-f78b1c6573a7e4a30f799fd28acd414e5deb140d.zip
cpython-f78b1c6573a7e4a30f799fd28acd414e5deb140d.tar.gz
cpython-f78b1c6573a7e4a30f799fd28acd414e5deb140d.tar.bz2
I've moved the remains of PyInt_ to the longobject.h header file and removed the inclusing of intobject.h from Python.h. Now the intobject.h exists only to provide some aliases for porters from Python 2.x.
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 0fb28ad..465026a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -50,6 +50,10 @@ Core and Builtins
removed and im_func + im_self are renamed to __func__ and __self__. The
factory PyMethod_New takes only func and instance as argument.
+- intobject.h is no longer included by Python.h. The remains were moved
+ to longobject.h. It still exists to define several aliases from PyInt_
+ to PyLong_ functions.
+
Extension Modules
-----------------