summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* gh-92032: Add soft keywords to rlcompleter (#92029)kbeldan2022-05-022-2/+5
* Delete outdated comment in logging module (#31117)Thomas Miedema2022-05-021-2/+0
* bpo-46285: Add command-line option -p/--protocol to module http.server (#30999)Géry Ogam2022-05-021-7/+12
* bpo-46547: remove leaking vars into `pydoc.Helper` namespace (#30957)Nikita Sobolev2022-05-021-0/+1
* bpo-46787: Fix `ProcessPoolExecutor exception` memory leak (GH-31408) (#31408)themylogin2022-05-021-0/+3
* gh-87390: Add __unpacked__ attribute to types.GenericAlias (#92059)Jelle Zijlstra2022-05-021-0/+6
* gh-90765: configparser test: Catch deprecation warning (#91480)Hugo van Kemenade2022-05-021-1/+3
* gh-90213: Speed up right shifts of negative integers (GH-30277)Mark Dickinson2022-05-021-0/+4
* Fix typo in turtle deprecation warning and use warnings._deprecated (#91862)Hugo van Kemenade2022-05-021-4/+4
* Add weakref_slot to dataclass decorator, to allow instances with slots to be ...Eric V. Smith2022-05-022-8/+91
* gh-91276: revert the increase of dis output width (GH-92126)Irit Katriel2022-05-022-254/+266
* gh-92128: Add `__class_getitem__` to `logging.LoggerAdapter` and `logging.Str...Alex Waygood2022-05-022-0/+7
* gh-92135: Fix _Py_reinterpret_cast() for const (#92138)Victor Stinner2022-05-022-5/+44
* concurrent.futures: Fix typo in docstring (#92121)Yiannis Hadjicharalambous2022-05-021-1/+1
* gh-89301: Fix regression with bound values in traced SQLite statements (#92053)Erlend Egeberg Aasland2022-05-021-1/+61
* gh-91321: Add _testcppext C++ extension (#32175)Victor Stinner2022-05-022-0/+141
* bpo-36819: Fix crashes in built-in encoders with weird error handlers (GH-28593)Serhiy Storchaka2022-05-021-9/+168
* gh-92114: Improve error message for types with __class_getitem__ = None (GH-9...Serhiy Storchaka2022-05-021-0/+8
* bpo-39716: Raise on conflicting subparser names. (GH-18605)Antony Lee2022-05-012-0/+20
* gh-91952: Make TextIOWrapper.reconfigure() supports "locale" encoding (GH-91982)Inada Naoki2022-05-011-0/+2
* gh-91954: Use shell=True in test_subprocess.test_encoding_warning (GH-92090)Dennis Sweeney2022-05-011-6/+5
* gh-92063: Enforce types in specialized PRECALL opcodes (GH-92068)Dennis Sweeney2022-04-301-0/+27
* gh-92019: Make sqlite3.Blob indexing conform with the norm (#92020)Erlend Egeberg Aasland2022-04-301-22/+29
* bpo-43323: Fix UnicodeEncodeError in the email module (GH-32137)Serhiy Storchaka2022-04-305-6/+34
* gh-81548: Deprecate octal escape sequences with value larger than 0o377 (GH-9...Serhiy Storchaka2022-04-302-1/+59
* gh-91760: Deprecate group names and numbers which will be invalid in future (...Serhiy Storchaka2022-04-302-7/+90
* gh-92049: Forbid pickling constants re._constants.SUCCESS etc (GH-92070)Serhiy Storchaka2022-04-301-0/+2
* gh-91954: Emit EncodingWarning from locale and subprocess (GH-91977)Inada Naoki2022-04-303-10/+53
* gh-91880 - fix typo (GH-92069)David Hewitt2022-04-301-1/+1
* bpo-43224: Implement substitution of unpacked TypeVarTuple in C (GH-31828)Serhiy Storchaka2022-04-302-27/+46
* gh-92064: Fix global variable name collision in test_typing (#92067)Dennis Sweeney2022-04-301-13/+13
* gh-91217: deprecate xdrlib (GH-92066)Brett Cannon2022-04-302-1/+6
* bpo-44791: Accept ellipsis as the last argument of typing.Concatenate (#30969)Serhiy Storchaka2022-04-292-13/+6
* gh-87390: Add tests demonstrating current type variable substitution behaviou...Matthew Rahtz2022-04-291-0/+387
* bpo-26792: Improve docstrings of runpy module run_functions (#30729)Humbled Drugman2022-04-291-8/+28
* gh-91324: Convert the stable ABI manifest to TOML (GH-92026)Petr Viktorin2022-04-291-4/+13
* bpo-22276: Change pathlib.Path.glob not to ignore trailing path separator (GH...Eisuke Kawashima2022-04-282-0/+23
* gh-91603: Speed up isinstance/issubclass on union types (GH-91631)Yurii Karabas2022-04-282-4/+4
* gh-91832: Add 'required' attr to argparse.Action repr (GH-91841)Abhigyan Bose2022-04-282-2/+5
* gh-91324: List feature macros in the stable ABI manifest, improve tests (GH-3...Petr Viktorin2022-04-281-0/+56
* gh-91984: Fix trailing spaces in multiline test strings in test_argparse (GH-...Abhigyan Bose2022-04-281-4/+2
* gh-91869: Fix tracing of specialized instructions with extended args (GH-91945)Dennis Sweeney2022-04-283-1/+46
* gh-91217: deprecate uu (GH-92009)Brett Cannon2022-04-283-11/+42
* Correct method name typo (#91970)Simon de Vlieger2022-04-271-1/+1
* gh-87999: Change warning type for numeric literal followed by keyword (GH-91980)Serhiy Storchaka2022-04-271-8/+17
* gh-91810: Expand ElementTree.write() tests to use non-ASCII data (GH-91989)Serhiy Storchaka2022-04-271-17/+80
* Fix missing `f` prefix on f-strings (GH-91910)Alexander Shadchin2022-04-272-2/+2
* gh-68966: Deprecate the mailcap module (#91951)Victor Stinner2022-04-262-4/+15
* gh-91870: Remove unsupported SRE opcode CALL (GH-91872)Serhiy Storchaka2022-04-263-12/+1
* gh-91217: deprecate telnetlib (GH-91958)Brett Cannon2022-04-262-2/+6