]> granicus.if.org Git - python/commitdiff
#16664: Add regression tests for glob's behaviour concerning "."-entries
authorHynek Schlawack <hs@ox.cx>
Sun, 16 Dec 2012 11:46:58 +0000 (12:46 +0100)
committerHynek Schlawack <hs@ox.cx>
Sun, 16 Dec 2012 11:46:58 +0000 (12:46 +0100)
Patch by Sebastian Kreft.

1  2 
Misc/ACKS
Misc/NEWS

diff --cc Misc/ACKS
Simple merge
diff --cc Misc/NEWS
index 3135c33609445352cdf2909745789b819bd45b6e,82b770dc14d16eb418937e30bce16df182b04dd8..6be851efb036724cf35cbc972a80287bac02a194
+++ b/Misc/NEWS
@@@ -64,10 -40,7 +64,10 @@@ Core and Builtin
  - Issue #9535: Fix pending signals that have been received but not yet
    handled by Python to not persist after os.fork() in the child process.
  
- - Issue #15001: fix segfault on "del sys.module['__main__']". Patch by Victor
 +- Issue #14794: Fix slice.indices to return correct results for huge values,
 +  rather than raising OverflowError.
 +
+ - Issue #15001: fix segfault on "del sys.modules['__main__']". Patch by Victor
    Stinner.
  
  - Issue #8271: the utf-8 decoder now outputs the correct number of U+FFFD
@@@ -470,9 -306,9 +470,12 @@@ Extension Module
  Tests
  -----
  
+ - Issue #16664: Add regression tests for glob's behaviour concerning entries
+   starting with a ".".  Patch by Sebastian Kreft.
 +- Issue #13390: The ``-R`` option to regrtest now also checks for memory
 +  allocation leaks, using :func:`sys.getallocatedblocks()`.
 +
  - Issue #16559: Add more tests for the json module, including some from the
    official test suite at json.org.  Patch by Serhiy Storchaka.