From: Hynek Schlawack Date: Sun, 16 Dec 2012 11:46:58 +0000 (+0100) Subject: #16664: Add regression tests for glob's behaviour concerning "."-entries X-Git-Tag: v3.4.0a1~1846 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0bb8d8c4c968aa8cf780bd5a38ae5873e23b5353;p=python #16664: Add regression tests for glob's behaviour concerning "."-entries Patch by Sebastian Kreft. --- 0bb8d8c4c968aa8cf780bd5a38ae5873e23b5353 diff --cc Misc/NEWS index 3135c33609,82b770dc14..6be851efb0 --- a/Misc/NEWS +++ 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 #14794: Fix slice.indices to return correct results for huge values, + rather than raising OverflowError. + - - Issue #15001: fix segfault on "del sys.module['__main__']". Patch by Victor + - 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.