summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-04-10 20:28:17 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-04-10 20:28:17 (GMT)
commit0bc2ab9a20745e3cc7a2ca4cc01a3708e273e2dc (patch)
tree8c4064913b744ff0a8bcd5fbdcac81c5e0bc0dc1 /Misc
parenta19dc0beb1d2e499b86f56a992e78e7e3d767ee3 (diff)
downloadcpython-0bc2ab9a20745e3cc7a2ca4cc01a3708e273e2dc.zip
cpython-0bc2ab9a20745e3cc7a2ca4cc01a3708e273e2dc.tar.gz
cpython-0bc2ab9a20745e3cc7a2ca4cc01a3708e273e2dc.tar.bz2
Patch #837242: id() for large ptr should return a long.
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 bac4238..fcd1738 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.5 alpha 2?
Core and builtins
-----------------
+- Patch #837242: id() of any Python object always gives a positive
+ number, which might be a long integer. PyLong_FromVoidPtr and
+ PyLong_AsVoidPtr have been changed accordingly.
+
- Python on OS X 10.3 and above now uses dlopen() (via dynload_shlib.c)
to load extension modules and now provides the dl module. As a result,
sys.setdlopenflags() now works correctly on these systems. (SF patch