summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* bpo-29703: asyncio: Fix creating new event loops in child processes. (#411)Yury Selivanov2017-03-031-0/+22
|
* bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting ↵Martijn Pieters2017-02-271-0/+9
| | | | operations (#94)
* bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-329)Xiang Zhang2017-02-271-0/+3
|
* bpo-29110: Fix file object leak in `aifc.open` (GH-311)INADA Naoki2017-02-261-1/+17
| | | | (cherry picked from commit 03f68b6) (GH-162) (cherry picked from commit 5dc33ee) (GH-293)
* [3.5] bpo-28556: Update to typing: treat subscripted generics as proxies ↵Mariatta2017-02-251-0/+35
| | | | | | | (GH-265) (GH-269) (cherry picked from commit abb3b8ad94d699c8560d94ee9bac9c917b382abe) (cherry picked from commit 365cb5bb9069273e6970c9d5d17ee2fe5003e7ac)
* [3.5] bpo-29532: Altering a kwarg dictionary passed to functools.partial() ↵Serhiy Storchaka2017-02-221-0/+9
| | | | no longer affects a partial object after creation. (#222)
* bpo-29602: fix signed zero handling in complex constructor. (#203) (#205)Mark Dickinson2017-02-201-0/+23
| | | | | | | * Fix incorrect handling of signed zeros for complex-related classes. * Add Misc/NEWS entry. (cherry picked from commit 112ec38c15b388fe025ccb85369a584d218b1160)
* [3.5] bpo-29571: Use correct locale encoding in test_re (#149) (#154)Nick Coghlan2017-02-191-1/+1
| | | | | | | ``local.getlocale(locale.LC_CTYPE)`` and ``locale.getpreferredencoding(False)`` may give different answers in some cases (such as the ``en_IN`` locale). ``re.LOCALE`` uses the latter, so update the test case to match.
* bpo-28556: Various updates to typing (#28) (#78)Mariatta2017-02-132-25/+226
| | | | | | | | | | | | | | | | | | various updates from upstream python/typing repo: - Added typing.Counter and typing.ChainMap generics - More flexible typing.NamedTuple - Improved generic ABC caching - More tests - Bugfixes - Other updates * Add Misc/NEWS entry * Add issue number Contributed by Ivan Levkivskyi @ilevkivskyi (cherry picked from commit b692dc8475a032740576129d0990ddc3edccab2b)
* Issue #29416: Prevent infinite loop in pathlib.Path.mkdirSteve Dower2017-02-041-0/+11
|
* Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-041-0/+10
| | | | the match object. Based on patch by WGH.
* Fixes #24875: pip can now be installed in a venv with --system-site-packages.Vinay Sajip2017-02-021-9/+16
|
* Issue #29300: test_struct tests unpack_from() with keywordsVictor Stinner2017-02-021-0/+4
| | | | | Add an unit test on the _struct.Struct.unpack_from() method to test passing arguments as keywords.
* Issue #29337: Fixed possible BytesWarning when compare the code objects.Serhiy Storchaka2017-01-241-0/+3
| | | | Warnings could be emitted at compile time.
* Issue #29273: Remove unneeded workaround to restore localeMartin Panter2017-01-231-11/+0
| | | | | | The “readline” module already has a workaround using setlocale(LC_CTYPE, NULL). The code in test___all__ calls getlocale(), which can subtly alter the locale string and cause the test framework to complain.
* Skip the test requiring ctypes if ctypes is unavailable.Gregory P. Smith2017-01-231-1/+6
| | | | prevents http://buildbot.python.org/all/builders/x86%20Ubuntu%20Shared%203.x/builds/240/steps/test/logs/stdio
* typo fix, extra '.' :)Gregory P. Smith2017-01-231-1/+1
|
* Issue #28556: Allow defining methods in NamedTuple class syntax (#362)Guido van Rossum2017-01-231-5/+27
|
* Issue #28556: various style fixes for typing.pyGuido van Rossum2017-01-231-10/+21
|
* Issue #29335: Fix subprocess.Popen.wait() when the child process hasGregory P. Smith2017-01-231-0/+41
| | | | exited to a stopped instead of terminated state (ex: when under ptrace).
* Issue #29290: argparse help messages won't wrap at non-breaking spaces.Xiang Zhang2017-01-221-0/+17
|
* Issue #29198: add AsyncGenerator (Jelle Zijlstra)Guido van Rossum2017-01-181-0/+42
|
* Issue #28556: allow default values in class form of NamedTuple -- Jelle ZijlstraGuido van Rossum2017-01-181-0/+26
|
* Issue #28556: merge 5 more typing changes from upstream (#340, #344, #348, ↵Guido van Rossum2017-01-181-4/+33
| | | | #349, #350)
* Issue #29011: Fix an important omission by adding Deque to the typing module.Raymond Hettinger2017-01-171-0/+11
|
* Issues #1621, #29145: Test for str.join() overflowMartin Panter2017-01-121-0/+7
|
* Issue #22980: Skip a sysconfig test if _ctypes is not available.Martin Panter2017-01-131-2/+4
| | | | Extracted from revision a1daf2d289ad by Zachary Ware.
* Issue #28969: Fixed race condition in C implementation of functools.lru_cache.Serhiy Storchaka2017-01-121-0/+15
| | | | | KeyError could be raised when cached function with full cache was simultaneously called from differen threads with the same uncached arguments.
* Fix script_helper.run_python_until_end(): copy SYSTEMROOTVictor Stinner2017-01-121-7/+18
| | | | | | Windows requires at least the SYSTEMROOT environment variable to start Python. If run_python_until_end() doesn't copy SYSTEMROOT, the function always fail on Windows.
* Issue #25591: Fix test_imaplib if ssl missVictor Stinner2017-01-121-1/+1
|
* Issue #29220: Improved fix and test.Vinay Sajip2017-01-111-0/+8
|
* Issue #29142: Fix suffixes in no_proxy handling in urllib.Xiang Zhang2017-01-091-1/+2
| | | | | | In urllib.request, suffixes in no_proxy environment variable with leading dots could match related hostnames again (e.g. .b.c matches a.b.c). Patch by Milan Oberkirch.
* Issue #28815: Use new exception subclassesMartin Panter2017-01-081-7/+3
|
* test_curses - substitute self.skip() with self.skipTest()Xavier de Gaye2017-01-061-2/+2
|
* Issue #29156: Remove superfluous pow test.Serhiy Storchaka2017-01-041-3/+0
| | | | | test_powlong is the same as test_powint. Patch by Lukas Schwaighofer.
* Issue #15812: inspect.getframeinfo() now correctly shows the first line of a ↵Berker Peksag2017-01-021-0/+5
| | | | | | context Patch by Sam Breese.
* Issue #26267: Improve uuid.UUID documentationBerker Peksag2016-12-311-0/+4
| | | | | | | | * Document how comparison of UUID objects work * Document str(uuid) returns the braceless standard form * Add a test for comparison of a UUID object with a non-UUID object Patch by Ammar Askar.
* Issue #13051: Fixed recursion errors in large or resized curses.textpad.Textbox.Serhiy Storchaka2016-12-281-0/+9
| | | | Based on patch by Tycho Andersen.
* Issue #9770: curses.ascii predicates now work correctly with negative integers.Serhiy Storchaka2016-12-281-0/+19
|
* Issue #29073: bytearray formatting no longer truncates on first null byte.Serhiy Storchaka2016-12-281-0/+7
|
* Issue #28427: old keys should not remove new values fromAntoine Pitrou2016-12-271-0/+12
| | | | WeakValueDictionary when collecting from another thread.
* #25591: improve imap tests.R David Murray2016-12-251-0/+330
| | | | Patch by Maciej Szulik.
* Issue #28815: Skip TIPC tests if /proc/modules is not readableMartin Panter2016-12-241-3/+11
| | | | Based on patch by Patrila.
* Issue #28871: Fixed a crash when deallocate deep ElementTree.Serhiy Storchaka2016-12-211-0/+10
|
* Issue #28147: Fix a memory leak in split-table dictionariesINADA Naoki2016-12-201-0/+18
| | | | setattr() must not convert combined table into split table.
* Issue #28950: Disallow -j0 combined with -T/-l/-M in regrtest.Xiang Zhang2016-12-192-3/+6
|
* Issue #19542: Fix bugs in WeakValueDictionary.setdefault() and ↵Antoine Pitrou2016-12-191-0/+41
| | | | | | | | WeakValueDictionary.pop() when a GC collection happens in another thread. Original patch and report by Armin Rigo.
* Issue #25677: Correct syntax error caret for indented blocks.Martin Panter2016-12-111-0/+33
| | | | Based on patch by Michael Layzell.
* Issue #20191: Fixed a crash in resource.prlimit() when pass a sequence thatSerhiy Storchaka2016-12-191-0/+14
| | | | doesn't own its elements as limits.
* Fix spelling and grammar in code comments and documentationMartin Panter2016-12-181-1/+1
|