aboutsummaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-42780: Fix set_inheritable() for O_PATH file descriptors on Linux (GH-24172)cptpcrd2021-01-201-0/+27
* bpo-42005: profile and cProfile catch BrokenPipeError (GH-22643)Zhiming Wang2021-01-202-2/+12
* bpo-42864: Improve error messages regarding unclosed parentheses (GH-24161)Pablo Galindo2021-01-194-4/+11
* bpo-42923: _Py_DumpExtensionModules() ignores stdlib ext (GH-24254)Victor Stinner2021-01-192-12/+21
* bpo-41818: Close file descriptors in test_openpty (#GH-24119)Petr Viktorin2021-01-191-10/+10
* closes bpo-42938: Replace snprintf with Python unicode formatting in ctypes p...Benjamin Peterson2021-01-181-0/+43
* bpo-42923: Dump extension modules on fatal error (GH-24207)Victor Stinner2021-01-182-0/+29
* bpo-42944 Fix Random.sample when counts is not None (GH-24235)jonanifranco2021-01-182-28/+28
* bpo-42923: Add Py_FatalError() test in test_capi (GH-24240)Victor Stinner2021-01-182-16/+23
* bpo-42931: randbytes missing from random.__all__ (GH-24219)Setrak Balian2021-01-151-0/+1
* bpo-42934: use TracebackException(compact=True) in unittest.TestResult (GH-24...Irit Katriel2021-01-151-1/+2
* Mark instructions at end of class scope as artificial. (GH-24222)Mark Shannon2021-01-151-0/+18
* bpo-42877: add the 'compact' param to TracebackException's __init__ (#24179)Irit Katriel2021-01-142-9/+56
* bpo-42827: Fix crash on SyntaxError in multiline expressions (GH-24140)Lysandros Nikolaou2021-01-141-0/+3
* bpo-42924: Fix incorrect copy in bytearray_repeat (GH-24208)Tobias Holl2021-01-131-0/+10
* bpo-42908: Mark cleanup code at end of try-except and with artificial (#24202)Mark Shannon2021-01-132-1/+41
* bpo-42901: [Enum] move member creation to `__set_name__` (GH-24196)Ethan Furman2021-01-123-110/+204
* bpo-37324: Remove ABC aliases from collections (GH-23754)Hugo van Kemenade2021-01-131-16/+0
* bpo-42848: remove recursion from TracebackException (GH-24158)Irit Katriel2021-01-122-46/+94
* bpo-42882: Add test_embed.test_unicode_id_init() (GH-24198)Victor Stinner2021-01-121-0/+6
* Fix various ParamSpec errors in typing (GH-24176)Ken Jin2021-01-101-1/+1
* bpo-33065: Fix problem debugging user classes with __repr__ method (GH-24183)Terry Jan Reedy2021-01-103-3/+19
* bpo-24464: Fix sqlite3.enable_shared_cache() deprecation wrapper (GH-24170)Erlend Egeberg Aasland2021-01-092-1/+5
* bpo-42802: Remove distutils bdist_wininst command (GH-24043)Victor Stinner2021-01-0916-430/+4
* bpo-42846: Convert CJK codec extensions to multiphase init (GH-24157)Victor Stinner2021-01-081-2/+24
* bpo-42851: [Enum] remove brittle __init_subclass__ support (GH-24154)Ethan Furman2021-01-072-75/+1
* bpo-42847: Normalise Lib/sqlite3/test/* file encodings (GH-24147)Erlend Egeberg Aasland2021-01-076-21/+15
* bpo-40823: Use loadTestsFromTestCase() iso. makeSuite() in sqlite3 tests (GH-...Erlend Egeberg Aasland2021-01-079-320/+343
* bpo-14014: Clarify StreamWriter.reset() documentation (GH-13716)Berker Peksag2021-01-061-2/+2
* bpo-24464: Deprecate sqlite3.enable_shared_cache (GH-24008)Erlend Egeberg Aasland2021-01-062-0/+21
* bpo-40810: Require SQLite 3.7.15 (GH-24106)Erlend Egeberg Aasland2021-01-062-12/+0
* bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099)Mark Shannon2021-01-051-0/+21
* bpo-32631: IDLE: Enable zzdummy example extension module (GH-14491)Cheryl Sabella2021-01-055-31/+225
* bpo-42681: Fix test_curses failures related to color pairs (GH-24089)Serhiy Storchaka2021-01-051-12/+41
* bpo-40636: Remove overly-strict zip pickling tests (GH-24109)Brandt Bucher2021-01-041-42/+0
* bpo-40810: Fix CheckTraceCallbackContent for SQLite pre 3.7.15 (GH-20530)Erlend Egeberg Aasland2021-01-041-0/+8
* Merge tag 'v3.10.0a4'Pablo Galindo2021-01-041-75/+131
|\
| * Python 3.10.0a4v3.10.0a4Pablo Galindo2021-01-041-75/+131
* | bpo-42810: Mark jumps at end of if and try statements as artificial. (GH-24091)Mark Shannon2021-01-041-0/+42
|/
* bpo-42789: Enable using /dev/tty in test_curses. (GH-24085)Serhiy Storchaka2021-01-041-1/+1
* bpo-42681: Fix range checks for color and pair numbers in curses (GH-23874)Serhiy Storchaka2021-01-031-26/+107
* bpo-42806: Fix ast locations of f-strings inside parentheses (GH-24067)Pablo Galindo2021-01-031-0/+53
* bpo-40631: Disallow single parenthesized star target (GH-24027)Lysandros Nikolaou2021-01-031-0/+25
* No need to test "istep==1" twice. (GH-24064)Raymond Hettinger2021-01-021-4/+2
* bpo-42772: Step argument ignored when stop is None. (GH-24018)Raymond Hettinger2021-01-022-1/+15
* bpo-42789: Don't skip curses tests on non-tty. (GH-24009)Serhiy Storchaka2021-01-021-38/+62
* bpo-42809: Improve pickle tests for recursive data. (GH-24060)Serhiy Storchaka2021-01-021-87/+253
* bpo-42195: Disallow isinstance/issubclass for subclasses of genericaliases in...Ken Jin2021-01-021-0/+10
* handle empty string in variable executable in platform.libc_ver() (#23140)Kurochan2021-01-021-1/+1
* bpo-41559: Documentation for PEP 612 (GH-24000)Ken Jin2021-01-011-7/+8