summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-01-18 03:11:38 (GMT)
committerJesse Noller <jnoller@gmail.com>2009-01-18 03:11:38 (GMT)
commitb0516a6bc6cdc580846b075bc27b1d3281dd6295 (patch)
tree051beb24dbf3d805f6b8f1fd054c68031d1582bc /Misc
parent34f9b4c6f1b4129d8ded2cfd580687295bc9cb63 (diff)
downloadcpython-b0516a6bc6cdc580846b075bc27b1d3281dd6295.zip
cpython-b0516a6bc6cdc580846b075bc27b1d3281dd6295.tar.gz
cpython-b0516a6bc6cdc580846b075bc27b1d3281dd6295.tar.bz2
Merge r68708 to py3k, fixes 4449
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fee788f..b1c5d7f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -135,6 +135,12 @@ Library
- Issue #4959: inspect.formatargspec now works for keyword only arguments
without defaults.
+- Issue #4449: AssertionError in mp_benchmarks.py, caused by an underlying issue
+ in sharedctypes.py.
+
+- Issue #1225107: inspect.isclass() returned True for instances with a custom
+ __getattr__.
+
- Issue #3826 and #4791: The socket module now closes the underlying socket
appropriately when it is being used via socket.makefile() objects
rather than delaying the close by waiting for garbage collection to do it.