summaryrefslogtreecommitdiff
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* bpo-40910: Export Py_GetArgcArgv() function (GH-20721)Victor Stinner2020-06-081-3/+31
* bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-2...Sandro Mani2020-06-081-7/+15
* bpo-40903: Handle multiple '=' in invalid assignment rules in the PEG parser ...Pablo Galindo2020-06-071-1/+20
* bpo-40904: Fix segfault in the new parser with f-string containing yield stat...Pablo Galindo2020-06-081-0/+2
* bpo-39791: Support file systems that cannot support non-ascii filenames (skip...Jason R. Coombs2020-06-072-2/+18
* bpo-40724: Support setting buffer slots from type specs (GH-20648)scoder2020-06-061-0/+5
* bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649)Batuhan Taskaya2020-06-061-0/+7
* bpo-40862: Raise TypeError when const is given to argparse.BooleanOptionalAct...Rémi Lapeyre2020-06-051-0/+8
* bpo-39791: Refresh importlib.metadata from importlib_metadata 1.6.1. (GH-20659)Jason R. Coombs2020-06-053-10/+47
* Fix missing FloatOperation in EXTRA_FUNCTIONALITY path. (#20655)Stefan Krah2020-06-051-0/+2
* bpo-40807: Show warnings once from codeop._maybe_compile (#20486)Cheryl Sabella2020-06-041-0/+5
* bpo-17258: Add requires_hashdigest to multiprocessing tests (GH-20412)Christian Heimes2020-06-042-0/+12
* bpo-40826: Add _PyOS_InterruptOccurred(tstate) function (GH-20599)Victor Stinner2020-06-031-6/+16
* bpo-35078: Allow customization of CSS class name of a month in calendar modul...Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2020-06-021-0/+24
* bpo-26543: Fix IMAP4.noop when debug mode is enabled (GH-15206)Sanyam Khurana2020-06-021-0/+14
* bpo-40826: Add _Py_EnsureTstateNotNULL() macro (GH-20571)Victor Stinner2020-06-011-1/+4
* Make sure that keyword arguments are merged into the arguments dictionary whe...Mark Shannon2020-06-011-0/+18
* bpo-17005: Move topological sort functionality to its own module (GH-20558)Pablo Galindo2020-06-012-270/+245
* bpo-40755: Add rich comparisons to Counter (GH-20548)Raymond Hettinger2020-05-311-66/+26
* bpo-29882: Add an efficient popcount method for integers (#771)Niklas Fiekas2020-05-292-1/+13
* Further de-linting of zoneinfo module (#20499)Paul Ganssle2020-05-291-9/+2
* bpo-40780: Fix failure of _Py_dg_dtoa to remove trailing zeros (GH-20435)Mark Dickinson2020-05-291-0/+11
* bpo-39040: Fix parsing of email mime headers with whitespace between encoded-...Abhilash Raj2020-05-281-0/+19
* bpo-30064: Properly skip unstable loop.sock_connect() racing test (GH-20494)Fantix King2020-05-281-20/+26
* bpo-40755: Add missing multiset operations to Counter() (GH-20339)Raymond Hettinger2020-05-281-0/+59
* bpo-40275: Fix test.support.threading_helper (GH-20488)Victor Stinner2020-05-281-6/+7
* bpo-40275: Remove test.support.TESTFN_ENCODING (GH-20482)Hai Shi2020-05-283-9/+10
* bpo-30064: Fix unstable asyncio "racing" socket tests (GH-20485)Victor Stinner2020-05-281-0/+4
* bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...Serhiy Storchaka2020-05-283-15/+10
* bpo-40275: test.support imports subprocess lazily (GH-20471)Victor Stinner2020-05-281-3/+11
* bpo-40275: test.support.check_impl_detail() uses sys.implementation (GH-20468)Victor Stinner2020-05-281-1/+1
* bpo-40275: Adding threading_helper submodule in test.support (GH-20263)Hai Shi2020-05-2845-361/+405
* Revert "bpo-32604: PEP 554 for use in test suite (GH-19985)" (#20465)Pablo Galindo2020-05-273-863/+0
* bpo-40614: Respect feature version for f-string debug expressions (GH-20196)Shantanu2020-05-271-0/+5
* bpo-40791: Use CRYPTO_memcmp() for compare_digest (#20456)Christian Heimes2020-05-271-35/+53
* bpo-30064: Fix asyncio loop.sock_* race condition issue (#20369)Fantix King2020-05-271-0/+131
* Fix lookahead of soft keywords in the PEG parser (GH-20436)Pablo Galindo2020-05-261-0/+12
* Add soft keywords (GH-20370)Guido van Rossum2020-05-261-0/+30
* bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)Serhiy Storchaka2020-05-267-167/+49
* bpo-39244: multiprocessing return default start method first on macOS (GH-18625)idomic2020-05-261-1/+3
* bpo-40637: Fix test_pbkdf2_hmac_py for missing sha1 (#20422)Christian Heimes2020-05-261-9/+23
* Remove duplicated words words (GH-20413)Serhiy Storchaka2020-05-261-1/+1
* bpo-38964: Print correct filename on a SyntaxError in an fstring (GH-20399)Lysandros Nikolaou2020-05-261-0/+13
* bpo-35714: Reject null characters in struct format strings (GH-16928)Zackery Spytz2020-05-251-0/+8
* bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382)Rémi Lapeyre2020-05-241-0/+9
* bpo-40679: Use the function's qualname in certain TypeErrors (GH-20236)Dennis Sweeney2020-05-222-1/+50
* bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)Chris Jerdonek2020-05-222-3/+62
* bpo-9216: hashlib usedforsecurity fixes (GH-20258)Christian Heimes2020-05-224-33/+86
* bpo-40630: Add tracemalloc.reset_peak (GH-20102)Huon Wilson2020-05-221-0/+24
* bpo-40334: Produce better error messages for non-parenthesized genexps (GH-20...Lysandros Nikolaou2020-05-221-5/+3