summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378)Mariusz Felisiak2021-07-2613-23/+23
* bpo-44515: handle non-refcounted GC in contextlib tests (GH-26910)Nick Coghlan2021-07-262-6/+11
* bpo-44698: Fix undefined behaviour in complex exponentiation. (GH-27278)T. Wouters2021-07-261-0/+21
* bpo-44732: Rename types.Union to types.UnionType (#27342)Hasan2021-07-263-14/+13
* bpo-44734: Fix precision in turtle tests (GH-27343)Logan Jones2021-07-261-11/+3
* bpo-44590: Lazily allocate frame objects (GH-27077)Mark Shannon2021-07-262-1/+2
* bpo-44600: Fix line numbers for pattern matching cleanup code (GH-27346)Charles Burkland2021-07-251-0/+76
* bpo-43950: support some multi-line expressions for PEP 657 (GH-27339)Batuhan Taskaya2021-07-253-8/+35
* bpo-42378: fixed log truncation on logging shutdown (GH-27310)andrei kulakov2021-07-252-6/+25
* bpo-44717: improve AttributeError on circular imports of submodules (GH-27338)Filipe Laíns2021-07-245-2/+27
* bpo-44676: Serialize the union type using only public API (GH-27323)Serhiy Storchaka2021-07-243-32/+23
* bpo-43950: support long lines in traceback.py (GH-27336)Batuhan Taskaya2021-07-242-1/+27
* bpo-44731: Simplify the union type implementation (GH-27318)Serhiy Storchaka2021-07-242-13/+19
* Revert "bpo-44717: improve AttributeError on circular imports of submodules (...Pablo Galindo Salgado2021-07-245-27/+2
* bpo-43950: ensure source_line is present when specialising the traceback (GH-...Batuhan Taskaya2021-07-241-0/+25
* bpo-44353: Improve tests covering typing.NewType pickling (GH-27302)Yurii Karabas2021-07-241-8/+9
* bpo-44717: improve AttributeError on circular imports of submodules (GH-27299)Filipe Laíns2021-07-245-2/+27
* bpo-44720: Don't crash when calling weakref.proxy(not_an_iterator).__next__ (...Dennis Sweeney2021-07-241-0/+30
* bpo-44353: Expand NewType tests for complex __qualname__. (#27311)Serhiy Storchaka2021-07-242-18/+47
* Fix a deprecation warning in typing tests (#27312)Sebastian Rittau2021-07-231-3/+0
* bpo-44353: Fix memory leak introduced by GH-27262 (GH-27305)Yurii Karabas2021-07-231-2/+7
* Improve consistency of colorsys.rgb_to_hsv (GH-27277)seb-hub2021-07-231-4/+5
* bpo-29298: Fix crash with required subparsers without dest (GH-3680)Anthony Sottile2021-07-232-0/+26
* bpo-44676: Add ability to serialize types.Union (GH-27244)Yurii Karabas2021-07-232-2/+37
* bpo-44653: Support typing types in parameter substitution in the union type. ...Serhiy Storchaka2021-07-221-0/+30
* bpo-44353: Implement typing.NewType __call__ method in C (#27262)Yurii Karabas2021-07-222-16/+54
* bpo-44708: Only re-run test methods that match names of previously failing te...Łukasz Langa2021-07-226-178/+343
* Speed up test_urlsplit_normalization (GH-26688)Jacob Walls2021-07-221-1/+2
* bpo-44704: Make Set._hash consistent with frozenset.__hash__ (GH-27281)Dennis Sweeney2021-07-212-0/+13
* bpo-44686 replace unittest.mock._importer with pkgutil.resolve_name (GH-18544)Thomas Grainger2021-07-211-23/+4
* bpo-44539: Support recognizing JPEG files without JFIF or Exif markers (GH-26...Mohamad Mansour2021-07-203-1/+4
* bpo-43219: skip Solaris in the test as well (GH-27257)Jakub Kulík2021-07-201-1/+2
* bpo-44566: resolve differences between asynccontextmanager and contextmanager...Thomas Grainger2021-07-203-56/+84
* bpo-44631: Make the repr() of the _Environ class more readable. (#27128)Leonardo Freua2021-07-202-6/+10
* bpo-44353: Add test to cover __or__ of two NewType (#27259)Yurii Karabas2021-07-201-4/+7
* bpo-44353: Refactor typing.NewType into callable class (GH-27250)Yurii Karabas2021-07-202-5/+42
* bpo-44678: Separate error message for discontinuous padding in binascii.a2b_b...Idan Moral2021-07-191-6/+9
* bpo-44524: Add missed __name__ and __qualname__ to typing module objects (#27...Yurii Karabas2021-07-192-0/+70
* bpo-27513: email.utils.getaddresses() now handles Header objects (#13797)Zackery Spytz2021-07-192-1/+6
* bpo-44645: Check for interrupts on any potentially backwards edge (GH-27216)Mark Shannon2021-07-191-0/+25
* bpo-41546: make pprint (like print) not write to stdout when it is None (GH-2...Irit Katriel2021-07-192-2/+11
* bpo-44554: refactor pdb targets (and internal tweaks) (GH-26992)Jason R. Coombs2021-07-193-66/+110
* bpo-43086: Add handling for out-of-spec data in a2b_base64 (GH-24402)Idan Moral2021-07-191-0/+41
* bpo-42355: symtable.get_namespace() now checks whether there are multiple or ...Batuhan Taskaya2021-07-182-3/+11
* bpo-44633: Fix parameter substitution of the union type with wrong types. (GH...Serhiy Storchaka2021-07-181-0/+6
* bpo-44654: Refactor and clean up the union type implementation (GH-27196)Serhiy Storchaka2021-07-172-18/+26
* 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