summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-27946: Fix possible crash in ElementTree.Element (GH-29915)Serhiy Storchaka2021-12-051-0/+12
* bpo-13236: Flush the output stream more often in unittest (GH-29864)Serhiy Storchaka2021-12-043-5/+52
* Fixed documentation typo in compileall.py (GH-29912)Vishal Pandey2021-12-041-1/+1
* bpo-45607: Make it possible to enrich exception displays via setting their __...Irit Katriel2021-12-034-4/+98
* bpo-45885: Specialize COMPARE_OP (GH-29734)Dennis Sweeney2021-12-031-0/+4
* bpo-45582: Port getpath[p].c to Python (GH-29041)Steve Dower2021-12-0311-187/+1106
* bpo-45535: Improve output of Enum ``dir()`` (GH-29316)Alex Waygood2021-12-022-48/+378
* bpo-45954: Rename PyConfig.no_debug_ranges to code_debug_ranges (GH-29886)Victor Stinner2021-12-023-7/+7
* bpo-40280: Emscripten has no support for subprocesses (GH-29872)Christian Heimes2021-12-022-2/+10
* bpo-45876: Have stdev() also use decimal specific square root. (GH-29869)Raymond Hettinger2021-12-011-3/+2
* bpo-45876: Correctly rounded stdev() and pstdev() for the Decimal case (GH-2...Raymond Hettinger2021-12-012-22/+112
* bpo-30533:Add function inspect.getmembers_static that does not call propertie...Weipeng Hong2021-11-302-4/+38
* no-issue: remove unused import from test_graphlib.py (GH-29853)Adrian Garcia Badaracco2021-11-301-2/+1
* bpo-45653: fix test_embed on windows (GH-29814)Kumar Aditya2021-11-291-1/+1
* bpo-45917: Add math.exp2() method - return 2 raised to the power of x (GH-29829)Gideon2021-11-291-0/+11
* bpo-45828: Use unraisable exceptions within sqlite3 callbacks (FH-29591)Erlend Egeberg Aasland2021-11-292-29/+34
* bpo-45786: Allocate space for frame in frame object. (GH-29729)Mark Shannon2021-11-292-7/+6
* bpo-43498: Fix dictionary iteration error in _ExecutorManagerThread (GH-24868)Jakub Kulík2021-11-291-1/+1
* bpo-37658: Actually return result in race condition (GH-29202)Sam Bull2021-11-292-36/+10
* bpo-19460: Add test for MIMENonMultipart (GH-29817)1809092021-11-281-0/+14
* bpo-45614: Fix traceback display for exceptions with invalid module name (GH-...Irit Katriel2021-11-272-0/+13
* bpo-45876: Improve accuracy for stdev() and pstdev() in statistics (GH-29736)Raymond Hettinger2021-11-272-16/+105
* bpo-44353: Correct docstring for `NewType` (#29785)Alex Waygood2021-11-261-1/+1
* bpo-43137: webbrowser: Replace gvfs-open and gnome-open with "gio open" (GH-2...Simon McVittie2021-11-251-7/+4
* bpo-45727: Only trigger the 'did you forgot a comma' error suggestion if insi...Pablo Galindo Salgado2021-11-242-3/+3
* bpo-45822: Minor cleanups to the test_Py_CompileString test (GH-29750)Pablo Galindo Salgado2021-11-241-8/+8
* bpo-45514: Deprecate importlib resources legacy functions. (GH-29036)Jason R. Coombs2021-11-248-83/+186
* bpo-45703: Invalidate _NamespacePath cache on importlib.invalidate_ca… (GH-...Miro Hrončok2021-11-232-1/+45
* bpo-45783: Preserve file moves and deletions in the tests for the freeze tool...Eric Snow2021-11-231-4/+5
* bpo-45878: convert `try/except` to `self.assertRaises` in `Lib/ctypes/test/te...Nikita Sobolev2021-11-231-14/+4
* bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...Mark Shannon2021-11-234-54/+62
* bpo-45871: Refactor except matcher validation into a separate function so tha...Irit Katriel2021-11-221-0/+15
* bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH...Carl Friedrich Bolz-Tereick2021-11-221-0/+1
* bpo-45813: Make sure that frame->generator is NULLed when generator is deallo...Mark Shannon2021-11-221-0/+7
* bpo-44649: Fix dataclasses(slots=True) with a field with a default, but init=...Eric V. Smith2021-11-222-6/+35
* bpo-45766: Add direct proportion option to linear_regression(). (#29490)Raymond Hettinger2021-11-212-7/+30
* Added kw_only parameter to make_dataclasses. (GH-29679)Eric V. Smith2021-11-202-2/+13
* bpo-44733: Add max_tasks_per_child to ProcessPoolExecutor (GH-27373)Logan Jones2021-11-202-15/+85
* bpo-45811: Improve error message when source code contains invisible control ...Pablo Galindo Salgado2021-11-201-0/+3
* bpo-45450: Improve syntax error for parenthesized arguments (GH-28906)Pablo Galindo Salgado2021-11-201-0/+38
* bpo-45852: Fix the Counter/iter test for statistics.mode() (GH-29667)Raymond Hettinger2021-11-201-4/+7
* bpo-45851: Avoid full sort in statistics.multimode() (#29662)Raymond Hettinger2021-11-201-3/+5
* bpo-42158: Add MIME types for n-triples, n-quads, n3 and trig (GH-23230)Dylan Van Assche2021-11-201-0/+4
* bpo-45848: Allow the parser to get error lines from encoded files (GH-29646)Pablo Galindo Salgado2021-11-201-0/+13
* bpo-45506: Fix test_embed expecting to not find stdlib in source tree build w...Steve Dower2021-11-201-6/+11
* bpo-45727: Make the syntax error for missing comma more consistent (GH-29427)Pablo Galindo Salgado2021-11-191-0/+1
* bpo-45507: EOFErrors should be thrown for truncated gzip members (GH-29029)Ruben Vorderman2021-11-192-0/+11
* bpo-45709: Fix tracing when exception is handled. (GH-29638)Mark Shannon2021-11-191-0/+32
* bpo-45609: Specialize STORE_SUBSCR (GH-29242)Dennis Sweeney2021-11-192-0/+11
* bpo-45837: Properly deprecate turtle.RawTurtle.settiltangle (GH-29618)Hugo van Kemenade2021-11-181-10/+27