summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* 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
* gh-74690: typing: Don't unnecessarily call `_get_protocol_attrs` twice in `_P...Alex Waygood2023-03-311-10/+21
* gh-102871: Remove obsolete browsers from webbrowser (#102872)James De Bias2023-03-312-106/+16
* gh-102799: use exception instance instead of sys.exc_info() (#102885)Irit Katriel2023-03-317-17/+16
* gh-103085: Fix python locale.getencoding not to emit deprecation warning (gh-...Jeong, YunWon2023-03-301-1/+3
* GH-89987: Shrink the BINARY_SUBSCR caches (GH-103022)Brandt Bucher2023-03-294-5/+5
* gh-103112: Add http.client.HTTPResponse.read docstring and fix pydoc output (...Bernhard Wagner2023-03-291-0/+1
* gh-103068: Check condition expression of breakpoints for pdb (#103069)gaogaotiantian2023-03-292-13/+43
* gh-103054: typing: Improve `Callable` type substitution tests (#103055)Nikita Sobolev2023-03-291-0/+42
* gh-102558: [Enum] better handling of non-Enum EnumType classes (GH-103060)Ethan Furman2023-03-272-8/+5
* gh-103056: [Enum] ensure final _generate_next_value_ is a staticmethod (GH-10...Ethan Furman2023-03-272-0/+22
* gh-74468: [tarfile] Fix incorrect name attribute of ExFileObject (GH-102424)Oleg Iarygin2023-03-272-3/+10
* gh-103046: Display current line correctly for `dis.disco()` with CACHE entrie...gaogaotiantian2023-03-272-1/+35
* gh-103023: Add SyntaxError check in pdb's `display` command (#103024)gaogaotiantian2023-03-272-13/+24
* Fix typo in _swappedbytes_ in ctypes comment (#102773)Matthias Görgens2023-03-251-1/+1
* gh-98886: Fix issues with dataclass fields with special underscore names (#10...Shantanu2023-03-252-10/+26
* gh-103027: Update `dataclass.make_dataclass` docstring (gh-103028)Nikita Sobolev2023-03-251-2/+5
* GH-102833: Mention the key function in the docstrings (GH-103009)Raymond Hettinger2023-03-251-0/+8
* gh-100131: Add optional delete parameter to tempfile.TemporaryDirectory() (#1...JakobDev2023-03-242-7/+24
* gh-102980: Add tests for pdf's display, alias and where commands (#102981)gaogaotiantian2023-03-241-0/+150
* gh-100372: Use BIO_eof to detect EOF for SSL_FILETYPE_ASN1 (GH-100373)David Benjamin2023-03-241-0/+2
* gh-94684: uuid: support bytes in the name argument to uuid3/5 (#94709)MonadChains2023-03-232-4/+38
* GH-100982: Break up COMPARE_AND_BRANCH (GH-102801)Brandt Bucher2023-03-234-20/+15
* gh-102558: [Enum] fix AttributeError during member repr() (GH-102601)Dong-hee Na2023-03-232-1/+10
* Move binomialvariate() to a section for discrete distributions (GH-102955)Raymond Hettinger2023-03-231-20/+25