summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-46588: fix typo in test_calltip.py (GH-31119)Caio Agiani2022-02-041-1/+1
* Merge remote-tracking branch 'upstream/main'Pablo Galindo2022-02-035-5/+8
|\
| * bpo-46630: Fix initial focus of IDLE query dialogs (GH-31112)Terry Jan Reedy2022-02-032-1/+4
| * bpo-45975: IDLE - Remove extraneous parens (GH-31107)Terry Jan Reedy2022-02-033-4/+4
* | Python 3.11.0a5v3.11.0a5Pablo Galindo2022-02-031-37/+46
|/
* bpo-46436: Fix command-line option -d/--directory in module http.server (GH-3...Géry Ogam2022-02-031-13/+14
* bpo-46624: Defer to 3.12: "Remove deprecated support for non-integer values" ...Miro Hrončok2022-02-032-47/+85
* bpo-44977: Deprecate delegation of int to __trunc__ (GH-31031)Zackery Spytz2022-02-033-11/+20
* bpo-46483: Remove `__class_getitem__` from `pathlib.PurePath` (GH-30848)Nikita Sobolev2022-02-032-12/+0
* bpo-46565: `del` loop vars that are leaking into module namespaces (GH-30993)Nikita Sobolev2022-02-0313-8/+20
* Restrict use of Mock objects as specs (GH-31090)Matthew Suozzo2022-02-033-3/+19
* bpo-45629: Improve test.support.skip_if_buildbot (GH-31094)Gregory P. Smith2022-02-031-4/+6
* bpo-45975: Use walrus operator for some idlelib while loops (GH-31083)Nick Drozd2022-02-035-24/+9
* bpo-46616: Ensures test_importlib.test_windows cleans up registry keys after ...Steve Dower2022-02-021-3/+14
* bpo-45173: Keep configparser deprecations until Python 3.12 (GH-30952)Hugo van Kemenade2022-02-022-1/+72
* bpo-46433: _PyType_GetModuleByDef: handle static types in MRO (GH-30696)Petr Viktorin2022-02-021-0/+16
* bpo-45459: Add Py_buffer to limited API (GH-29991)Christian Heimes2022-02-022-0/+23
* bpo-43012: remove `pathlib._Accessor` (GH-25701)Barney Gale2022-02-022-130/+76
* bpo-46583: remove unused `sys.version_info` check from `selectors` (GH-31023)Nikita Sobolev2022-02-021-6/+5
* Fix minor details in the Counter docs (GH-31029)Raymond Hettinger2022-02-021-0/+4
* bpo-46414: Add typing.reveal_type (#30646)Jelle Zijlstra2022-02-022-1/+31
* bpo-44359: Fix test_ftplib unhandled thread exceptions (GH-31069)Victor Stinner2022-02-021-4/+11
* bpo-46591: Make About IDLE doc link label clickable (GH-30251)Wes2022-02-023-2/+6
* bpo-46528: Simplify BUILD_TUPLE/UNPACK_SEQUENCE folding (GH-31039)Brandt Bucher2022-02-011-1/+1
* bpo-46600: Fix test_gdb.test_pycfunction() for clang -Og (GH-31058)Victor Stinner2022-02-011-11/+14
* bpo-46487: Add `get_write_buffer_limits` to Write and _SSLProtocol transports...Emiya2022-02-012-0/+12
* bpo-46584: remove check for `py2.3` from `ctypes/test_python_api` (GH-31024)Nikita Sobolev2022-02-011-6/+2
* bpo-44031: fix test_tabnanny failure in non-ascii CWD (GH-31014)Irit Katriel2022-02-011-2/+2
* bpo-46482: add a test for `typing.Annotation.__new__` (GH-30821)Nikita Sobolev2022-02-011-0/+7
* bpo-46542: test_lib2to3 uses support.infinite_recursion() (GH-31035)Victor Stinner2022-01-314-23/+45
* Fix a `UnboundLocalError` bug in `test_sysconfig` (GH-31000)Brett Cannon2022-01-291-2/+2
* bpo-29688: document and test `pathlib.Path.absolute()` (GH-26153)Barney Gale2022-01-282-8/+61
* bpo-43112: detect musl as a separate SOABI (GH-24502)Natanael Copa2022-01-281-4/+4
* bpo-26552: Fixed case where failing `asyncio.ensure_future` did not close the...Kumar Aditya2022-01-282-3/+20
* bpo-46458: Add tests for context of exception in finally block (GH-30986)Irit Katriel2022-01-281-0/+50
* bpo-46560: Fix a typo in `typing.ParamSpec's` doc string (GH-30995)Zackery Spytz2022-01-281-1/+1
* bpo-46553: allow bare typing.ClassVar annotations (#30983)Gregory Beauregard2022-01-282-2/+6
* bpo-46329: Split calls into precall and call instructions. (GH-30855)Mark Shannon2022-01-284-200/+239
* bpo-46530: add `"thread_time"` to `test_time.test_get_clock_info` (#30913)Nikita Sobolev2022-01-281-12/+18
* bpo-46542: test_json uses support.infinite_recursion() (GH-30972)Victor Stinner2022-01-281-6/+13
* bpo-46098: Add test for multiline syntax error traceback (GH-30695)Russel Webber2022-01-271-7/+41
* bpo-44734: Fix floating point precision in test_turtle (GH-30910)Karolina Surma2022-01-271-1/+1
* bpo-46458: emit code for else of a try block immediately after the try body (...Irit Katriel2022-01-273-69/+214
* bpo-44791: Fix substitution of ParamSpec in Concatenate with different parame...Serhiy Storchaka2022-01-273-5/+60
* bpo-46544: Do not leak `x` and `uspace` in textwrap.TextWrapper (GH-30955)Nikita Sobolev2022-01-271-4/+1
* bpo-23556: [doc] Fix inaccuracy in documentation for raise without args. Impr...Kinshuk Dua2022-01-271-3/+19
* bpo-40280: Use presence of msvcrt module to detect Windows (GH-30930)Christian Heimes2022-01-271-2/+7
* bpo-45162: Revert "Remove many old deprecated unittest features" (GH-30935)Gregory P. Smith2022-01-2710-25/+323
* bpo-46496: news11-10 for bpo45296 (GH-30937)Terry Jan Reedy2022-01-271-0/+6
* bpo-45296: Clarify close, quit, and exit in IDLE (GH-30936)Terry Jan Reedy2022-01-272-11/+13