summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* Use subTest in test_exceptions for better error reporting (GH-20140)Pablo Galindo2020-05-171-26/+29
* bpo-40645: Deprecated internal details of hmac.HMAC (GH-20132)Christian Heimes2020-05-162-23/+50
* bpo-38870: Implement round tripping support for typed AST in ast.unparse (GH-...Batuhan Taskaya2020-05-162-8/+56
* bpo-38870: Correctly handle empty docstrings in ast.unparse (GH-18768)Batuhan Taskaya2020-05-162-7/+21
* bpo-40165: Suppress stderr when checking if test_stty_match should be skipped...Batuhan Taskaya2020-05-161-1/+5
* bpo-38870: Don't put unnecessary parentheses on class declarations in ast.par...Batuhan Taskaya2020-05-162-2/+15
* bpo-38870: Do not separate factor prefixes in ast.unparse (GH-20133)Batuhan Taskaya2020-05-162-4/+13
* bpo-37630: Use SHA3 and SHAKE XOF from OpenSSL (GH-16049)Christian Heimes2020-05-162-3/+19
* bpo-24416: Return named tuple from date.isocalendar() (GH-20113)Paul Ganssle2020-05-162-16/+72
* bpo-39305: Update nntplib to merge nntplib.NNTP and nntplib._NNTPBase (GH-19817)Dong-hee Na2020-05-162-60/+54
* bpo-40275: lazy import modules in test.support (GH-20128)Hai Shi2020-05-161-4/+9
* bpo-40503: PEP 615: Tests and implementation for zoneinfo (GH-19909)Paul Ganssle2020-05-1611-0/+3447
* bpo-39075: types.SimpleNamespace no longer sorts attributes in its repr (GH-1...Zackery Spytz2020-05-161-3/+3
* bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)Chris Jerdonek2020-05-155-44/+198
* bpo-40636: Clarify the zip built-in docstring. (GH-20118)Gregory P. Smith2020-05-151-1/+2
* bpo-40607: Reraise exception during task cancelation in asyncio.wait_for() (G...romasku2020-05-152-5/+60
* bpo-40055: test_distutils leaves warnings filters unchanged (GH-20095)Victor Stinner2020-05-151-0/+6
* bpo-40612: Fix SyntaxError edge cases in traceback formatting (GH-20072)Guido van Rossum2020-05-153-20/+45
* bpo-40334: Correctly identify invalid target in assignment errors (GH-20076)Pablo Galindo2020-05-155-23/+31
* bpo-38872: Document exec symbol for codeop.compile_command (GH-20047)Joannah Nanjekye2020-05-151-1/+2
* bpo-40462: Fix typo in test_json (GH-20094)Victor Stinner2020-05-141-1/+1
* bpo-40460: Fix typo in idlelib/zzdummy.py (GH-20093)Victor Stinner2020-05-141-1/+1
* bpo-40618: Disallow invalid targets in augassign and except clauses (GH-20083)Lysandros Nikolaou2020-05-143-1/+41
* bpo-40619: Correctly handle error lines in programs without file mode (GH-20090)Pablo Galindo2020-05-141-0/+2
* Revert "bpo-32604: [_xxsubinterpreters] Propagate exceptions. (GH-19768)" (GH...Victor Stinner2020-05-141-299/+2
* bpo-40495: compileall option to hardlink duplicate pyc files (GH-19901)Lumír 'Frenzy' Balhar2020-05-142-10/+256
* bpo-40275: Import locale module lazily in gettext (GH-19905)Hai Shi2020-05-141-1/+7
* bpo-40597: email: Use CTE if lines are longer than max_line_length consistent...Arkadiusz Hiler2020-05-142-7/+22
* bpo-29587: Make gen.throw() chain exceptions with yield from (GH-19858)Chris Jerdonek2020-05-132-1/+45
* issue-25872: Fix KeyError using linecache from multiple threads (GH-18007)Michael Graczyk2020-05-131-3/+3
* bpo-40334: Always show the caret on SyntaxErrors (GH-20050)Lysandros Nikolaou2020-05-131-9/+6
* bpo-40331: Increase test coverage for the statistics module (GH-19608)Tzanetos Balitsaris2020-05-131-0/+60
* bpo-40501: Replace ctypes code in uuid with native module (GH-19948)Steve Dower2020-05-122-177/+30
* bpo-40596: Fix str.isidentifier() for non-canonicalized strings containing no...Serhiy Storchaka2020-05-121-0/+7
* bpo-40593: Improve syntax errors for invalid characters in source code. (GH-2...Serhiy Storchaka2020-05-123-4/+9
* bpo-39481: remove generic classes from ipaddress/mmap (GH-20045)Batuhan Taskaya2020-05-122-11/+0
* bpo-40480: restore ability to join fnmatch.translate() results (GH-20049)Tim Peters2020-05-122-7/+34
* bpo-40571: Make lru_cache(maxsize=None) more discoverable (GH-20019)Raymond Hettinger2020-05-122-1/+29
* bpo-40334: produce specialized errors for invalid del targets (GH-19911)Shantanu2020-05-112-8/+50
* bpo-40561: Add docstrings for webbrowser open functions (GH-19999)Brad Solomon2020-05-111-0/+16
* bpo-40585: Normalize errors messages in codeop when comparing them (GH-20030)Pablo Galindo2020-05-111-0/+9
* bpo-40257: Tweak docstrings for special generic aliases. (GH-20022)Serhiy Storchaka2020-05-101-1/+4
* bpo-40397: Fix subscription of nested generic alias without parameters. (GH-2...Serhiy Storchaka2020-05-102-3/+16
* bpo-40397: Remove __args__ and __parameters__ from _SpecialGenericAlias (GH-1...Serhiy Storchaka2020-05-101-80/+87
* bpo-40334: Avoid collisions between parser variables and grammar variables (G...Pablo Galindo2020-05-101-0/+27
* bpo-40570: Improve compatibility of uname_result with late-bound .platform (#...Jason R. Coombs2020-05-092-3/+19
* bpo-39791: Add files() to importlib.resources (GH-19722)Jason R. Coombs2020-05-085-102/+257
* bpo-40541: Add optional *counts* parameter to random.sample() (GH-19970)Raymond Hettinger2020-05-082-6/+101
* bpo-40273: Reversible mappingproxy (FH-19513)Zackery Spytz2020-05-081-0/+9
* bpo-40555: Check for p->error_indicator in loop rules after the main loop is ...Pablo Galindo2020-05-081-0/+9