summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-42095: plistlib: Add tests that compare with plutil(1) (#27173)Hasan2021-07-171-0/+74
* bpo-41249: Fix postponed annotations for TypedDict (GH-27017)Germán Méndez Bravo2021-07-173-7/+41
* bpo-44490: Improve typing module compatibility with types.Union (GH-27048)Yurii Karabas2021-07-174-7/+37
* bpo-44655: Include the name of the type in unset __slots__ attribute errors (...Pablo Galindo Salgado2021-07-161-0/+6
* bpo-44655: Don't include suggestions for attributes that are the same as the ...Pablo Galindo Salgado2021-07-161-0/+12
* Revert "bpo-44645: Check for interrupts on any potentially backwards edge. (G...Pablo Galindo Salgado2021-07-161-25/+0
* bpo-20201: variadic arguments support for AC (GH-18609)Batuhan Taskaya2021-07-162-1/+221
* bpo-44647: Add a permanent Unicode-valued env var to regrtest (#27187)Łukasz Langa2021-07-162-1/+19
* bpo-44652: Preserve natural order of args in the union type. (GH-27185)Serhiy Storchaka2021-07-162-9/+37
* bpo-40897:Give priority to using the current class constructor in `inspect.si...Weipeng Hong2021-07-162-8/+57
* bpo-44569: Decouple frame formatting in traceback.py (GH-27038)Ammar Askar2021-07-162-34/+59
* Remove unnecessary 'invalid_primary' rule in the parser (GH-27186)Pablo Galindo Salgado2021-07-162-2/+2
* bpo-44645: Check for interrupts on any potentially backwards edge. (GH-27167)Mark Shannon2021-07-161-0/+25
* bpo-44636: Collapse union of equal types (GH-27178)Serhiy Storchaka2021-07-161-1/+6
* bpo-44646: Fix the hash of the union type. (#27179)Serhiy Storchaka2021-07-161-0/+4
* bpo-43950: make BinOp specializations more reliable (GH-27126)Batuhan Taskaya2021-07-152-1/+39
* bpo-44647: Fix test_httpservers failing on Unicode characters in os.environ o...Łukasz Langa2021-07-151-4/+13
* bpo-44626: Merge basic blocks earlier to enable better handling of exit block...Mark Shannon2021-07-152-20/+50
* Remove sys._deactivate_opcache() now that is not needed (GH-27154)Pablo Galindo Salgado2021-07-151-1/+0
* bpo-44622: Set line number of END_ASYNC_FOR to match that of iterator. (GH-27...Mark Shannon2021-07-151-1/+11
* bpo-42073: allow classmethod to wrap other classmethod-like descriptors (#27115)Łukasz Langa2021-07-151-0/+86
* bpo-26280: Port BINARY_SUBSCR to PEP 659 adaptive interpreter (GH-27043)Irit Katriel2021-07-151-0/+4
* Remove unnecessary pass statement in msvccompiler.py (GH-27123)Leonardo Freua2021-07-151-1/+0
* bpo-42799: fnmatch module: bump up size of lru_cache for patterns (GH-27084)andrei kulakov2021-07-151-1/+1
* Remove unnecessary test for `xc == 1` in _pydecimal (GH-27102)Elisha Hollander2021-07-151-2/+2
* Fix osx_framework_user include to match distutils (#27093)Tzu-ping Chung2021-07-151-1/+1
* bpo-44589: raise a SyntaxError when mapping patterns have duplicate literal k...Jack DeVries2021-07-151-11/+34
* bpo-44473: Update docstring and documentation for QueueHandler.prepar… (GH-...Vinay Sajip2021-07-151-4/+7
* bpo-34932: Add socket.TCP_KEEPALIVE for macOS (GH-25079)Shane Harvey2021-07-141-0/+7
* bpo-44632: Fix support of TypeVar in the union type (GH-27139)Serhiy Storchaka2021-07-141-1/+7
* bpo-44635: Convert None to NoneType in the union type constructor (GH-27136)Serhiy Storchaka2021-07-141-0/+13
* bpo-44616: Mark all clean up instructions at end of named exception block as ...Mark Shannon2021-07-141-0/+23
* bpo-44608: Fix memory leak in _tkinter._flatten() (GH-27107)Serhiy Storchaka2021-07-141-1/+7
* bpo-44606: Fix __instancecheck__ and __subclasscheck__ for the union type. (G...Serhiy Storchaka2021-07-141-2/+35
* bpo-44630: Fix assertion errors in csv module (GH-27127)T. Wouters2021-07-131-0/+6
* bpo-33346: Allow async comprehensions inside implicit async comprehensions (G...Serhiy Storchaka2021-07-131-0/+72
* bpo-44572: On Windows, disconnect STDIN in platform._syscmd_ver() to prevent ...Konstantin-Glukhov2021-07-131-0/+1
* bpo-38741: Definition of multiple ']' in header configparser (GH-17129)jsnklln2021-07-132-1/+8
* bpo-35113: clean up duplicate import and comment (#27073)andrei kulakov2021-07-131-4/+0
* Remove unnecessary pass statements (GH-27103)Elisha Hollander2021-07-133-3/+0
* bpo-43950: Specialize tracebacks for subscripts/binary ops (GH-27037)Batuhan Taskaya2021-07-122-3/+139
* bpo-26329: update os.path.normpath documentation (GH-20138)Furkan Onder2021-07-121-0/+1
* bpo-44207: Add an internal version number to function objects. (GH-27078)Mark Shannon2021-07-121-1/+1
* bpo-29753: revert 0d7ad9f (GH-19850) (GH-27085)Filipe Laíns2021-07-111-63/+0
* bpo-43219: shutil.copyfile, raise a less confusing exception instead of IsADi...andrei kulakov2021-07-102-21/+38
* bpo-44317: Improve tokenizer errors with more informative locations (GH-26555)Pablo Galindo Salgado2021-07-101-2/+2
* bpo-44570: Fix line tracing for forwards jumps to duplicated tails (GH-27068)Mark Shannon2021-07-081-0/+35
* bpo-44446: support lineno being None in traceback.FrameSummary (GH-26781)Filipe Laíns2021-07-082-0/+6
* bpo-44582: Accelerate mimetypes.init on Windows with a native accelerator (GH...Steve Dower2021-07-082-6/+42
* bpo-43908: Immutable types inherit vectorcall (GH-27001)Erlend Egeberg Aasland2021-07-081-2/+2