diff options
author | Christian Heimes <christian@cheimes.de> | 2007-12-11 19:56:40 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-12-11 19:56:40 (GMT) |
commit | a3534a6ff5602ea848b1d27f4f9d9d7913cbe31b (patch) | |
tree | a39ae6545f6c82f842768ae2bfa4afcd931f5573 /Misc | |
parent | fc5aa9d0bcf56d3bda0f033593ca4506b83515ee (diff) | |
download | cpython-a3534a6ff5602ea848b1d27f4f9d9d7913cbe31b.zip cpython-a3534a6ff5602ea848b1d27f4f9d9d7913cbe31b.tar.gz cpython-a3534a6ff5602ea848b1d27f4f9d9d7913cbe31b.tar.bz2 |
Issue #1587: Added instancemethod wrapper for PyCFunctions. The Python C API
has gained a new type *PyInstanceMethod_Type* and the functions
*PyInstanceMethod_Check(o)*, *PyInstanceMethod_New(func)* and
*PyInstanceMethod_Function(im)*.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12,6 +12,11 @@ What's New in Python 3.0a3? Core and Builtins ----------------- +- Issue #1587: Added instancemethod wrapper for PyCFunctions. The Python C API + has gained a new type *PyInstanceMethod_Type* and the functions + *PyInstanceMethod_Check(o)*, *PyInstanceMethod_New(func)* and + *PyInstanceMethod_Function(im)*. + - Constants gc.DEBUG_OBJECT and gc.DEBUG_INSTANCE have been removed from the gc module; gc.DEBUG_COLLECTABLE or gc.DEBUG_UNCOLLECTABLE are now enough to print the corresponding list of objects considered by the garbage collector. |