summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2010-03-23 12:37:29 (GMT)
committerFlorent Xicluna <florent.xicluna@gmail.com>2010-03-23 12:37:29 (GMT)
commitd474f3a23953d55a34588c75cfc2641c4d0da81b (patch)
treebcbc6c546570fd28988ab9ded2d1e3389eb2cbc2 /Misc
parentdbac1689483ec160bb811792f5a70e09fefd55ec (diff)
downloadcpython-d474f3a23953d55a34588c75cfc2641c4d0da81b.zip
cpython-d474f3a23953d55a34588c75cfc2641c4d0da81b.tar.gz
cpython-d474f3a23953d55a34588c75cfc2641c4d0da81b.tar.bz2
Merged revisions 78800 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78800 | florent.xicluna | 2010-03-08 16:20:28 +0100 (lun, 08 mar 2010) | 2 lines #7624: Fix isinstance(foo(), collections.Callable) for old-style classes. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9dfb804..38c5f36 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,6 +23,9 @@ Core and Builtins
Library
-------
+- Issue #7624: Fix isinstance(foo(), collections.Callable) for old-style
+ classes.
+
- Issue #7512: shutil.copystat() could raise an OSError when the filesystem
didn't support chflags() (for example ZFS under FreeBSD). The error is
now silenced.