diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-04-10 20:28:17 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-04-10 20:28:17 (GMT) |
commit | 0bc2ab9a20745e3cc7a2ca4cc01a3708e273e2dc (patch) | |
tree | 8c4064913b744ff0a8bcd5fbdcac81c5e0bc0dc1 /Misc | |
parent | a19dc0beb1d2e499b86f56a992e78e7e3d767ee3 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |