summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-08-12 09:54:55 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-08-12 09:54:55 (GMT)
commit3fdffc9fb69b8c2893c833c494132b00c26f5e8f (patch)
tree6f0cf82ce96c5f3ad4a388cc80fe0e65b3fa6054 /Misc
parent67310859d1f1e8f54edb6c50aab7f5bb87fc3585 (diff)
downloadcpython-3fdffc9fb69b8c2893c833c494132b00c26f5e8f.zip
cpython-3fdffc9fb69b8c2893c833c494132b00c26f5e8f.tar.gz
cpython-3fdffc9fb69b8c2893c833c494132b00c26f5e8f.tar.bz2
Issue #17923: glob() patterns ending with a slash no longer match non-dirs on
AIX. Based on patch by Delhallt.
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 222d928..fc88269 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,9 @@ Core and Builtins
Library
-------
+- Issue #17923: glob() patterns ending with a slash no longer match non-dirs on
+ AIX. Based on patch by Delhallt.
+
- Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particular
when unpickling pickled sqlite3.Row). sqlite3.Row is now initialized in the
__new__() method.