summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* GH-101362: Omit path anchor from `pathlib.PurePath()._parts` (GH-102476)Barney Gale2023-04-092-67/+106
* GH-103379: Fix up old tests for `pathlib.PurePath._parse_path` (GH-103380)Barney Gale2023-04-091-110/+97
* Gh-68586: use run_python_until_end in test_capi (GH-102729)Furkan Onder2023-04-091-11/+7
* Fix typos in test_tempfile.py (#102841)JakobDev2023-04-091-2/+2
* gh-102799: use `sys.exception()` instead of `sys.exc_info()` in pdb (#103294)Irit Katriel2023-04-091-8/+9
* gh-103092: Isolate `socket` module (#103094)Erlend E. Aasland2023-04-091-0/+7
* gh-75729: Fix os.spawn tests not handling spaces on Windows (#99150)C.A.M. Gerlach2023-04-081-45/+57
* gh-103329: Add regression test for PropertyMock with side effect (#103358)Russell Keith-Magee2023-04-081-1/+22
* gh-103272: regression test for getattr exception in property (#103336)sunmy20192023-04-071-0/+13
* gh-103225: Fixed zero lineno issue for pdb (#103265)Tian Gao2023-04-072-2/+37
* gh-74690: Add more tests for runtime-checkable protocols (#103347)Alex Waygood2023-04-071-2/+39
* GH-88013: Fix TypeError raised by ntpath.realpath in some cases (GH-102813)AN Long2023-04-072-1/+8
* bpo-46523: fix tests rerun when `setUp[Class|Module]` fails (#30895)Nikita Sobolev2023-04-073-3/+184
* gh-103256: Fix hmac algorithm to support fallback implementation (gh-103286)Dong-hee Na2023-04-071-0/+10
* gh-93121: fix test_mailbox where some test cases were accidentally dropped (#...AGZain2023-04-061-22/+23
* GH-102700: allow built-in modules to be submodules (GH-103162)Brett Cannon2023-04-062-19/+0
* gh-103193: Speedup and inline `inspect._is_type` (#103321)Alex Waygood2023-04-061-9/+4
* gh-103193: Use LBYL idioms rather than EAFP in `inspect.getattr_static` (#103...Alex Waygood2023-04-061-15/+10
* gh-103186: assert in tests that UnsafeMailcapInput warnings are provided (#10...Ijtaba Hussain2023-04-061-4/+24
* gh-48330: assert warning is emitted on unittest.TestResult with no addDuratio...Irit Katriel2023-04-061-1/+2
* gh-102799: use sys.exception() instead of sys.exc_info() in tests (#103293)Irit Katriel2023-04-0612-71/+68
* [Enum] unchain exception property.__get__ (GH-103305)Ethan Furman2023-04-061-1/+1
* gh-101659: Add _Py_AtExit() (gh-103298)Eric Snow2023-04-061-11/+29
* gh-93910: [Enum] remove member.member deprecation (GH-103236)Ethan Furman2023-04-062-46/+33
* GH-88691: Shrink the CALL caches (GH-103230)Brandt Bucher2023-04-053-131/+131
* gh-74690: Further optimise `typing._ProtocolMeta.__instancecheck__` (#103280)Alex Waygood2023-04-051-1/+1
* gh-89058: remove skip from test_no_hang_on_context_chain_cycle2 (#102903)Irit Katriel2023-04-051-1/+0
* gh-86094: Add support for Unicode Path Extra Field in ZipFile (gh-102566)Yeojin Kim2023-04-052-13/+64
* gh-74690: typing: Call `_get_protocol_attrs` and `_callable_members_only` at ...Alex Waygood2023-04-051-11/+14
* gh-74690: typing: Simplify and optimise `_ProtocolMeta.__instancecheck__` (#1...Alex Waygood2023-04-051-11/+3
* gh-103193: Micro-optimise helper functions for `inspect.getattr_static` (#103...Alex Waygood2023-04-051-4/+3
* gh-66897: Upgrade HTTP CONNECT to protocol HTTP/1.1 (#8305)Michael Handler2023-04-052-21/+151
* GH-75586: Make shutil.which() on Windows more consistent with the OS (GH-103179)Charles Machalow2023-04-042-46/+129
* Merge branch 'main' of https://github.com/python/cpython into mainThomas Wouters2023-04-042-0/+41
|\
| * bpo-44844: Enable detection of Microsoft Edge browser in webbrowser module (G...Steve Dower2023-04-042-0/+41
* | Python 3.12.0a7v3.12.0a7Thomas Wouters2023-04-041-72/+74
|/
* gh-103092: Isolate `_pickle` module (#102982)Erlend E. Aasland2023-04-041-0/+28
* gh-103056: [Enum] use staticmethod decorator for _gnv_ (GH-103231)Ethan Furman2023-04-041-0/+3
* gh-98298, gh-74730: [Enum] update docs (GH-103163)Ethan Furman2023-04-031-4/+4
* gh-103215: Remove redundant if stmt from `enum.EnumType._find_data_type_` (GH...Sadra Barikbin2023-04-031-2/+0
* GH-76846, GH-85281: Call `__new__()` and `__init__()` on pathlib subclasses (...Barney Gale2023-04-032-68/+104
* gh-101865: Deprecate `co_lnotab` from code objects as per PEP 626 (#101866)Nikita Sobolev2023-04-031-0/+7
* gh-102038: Skip a sometimes unnecessary stat in site.py (#102039)Shantanu2023-04-021-9/+12
* gh-103109: Document ignore_warnings() test support helper (#103110)Charlie Zhao2023-04-021-1/+1
* bpo-4080: unittest durations (#12271)Giampaolo Rodola2023-04-029-28/+162
* gh-102433: Use `inspect.getattr_static` in `typing._ProtocolMeta.__instancech...Alex Waygood2023-04-022-7/+112
* GH-102456: Fix docstring and getopt options for base64 (gh-102457)Partha P. Mukherjee2023-04-021-2/+2
* gh-74690: Micro-optimise `typing._get_protocol_attrs` (#103152)Alex Waygood2023-03-311-8/+12
* gh-102549: [Enum] fail enum creation when data type raises in __init__ (GH-10...Ethan Furman2023-03-312-14/+31
* gh-101659: Clean Up the General Import Tests for Subinterpreters (gh-103151)Eric Snow2023-03-311-44/+106