summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)Serhiy Storchaka2021-08-2935-14/+143
* bpo-25130: Make SQLite tests more compatible with PyPy (GH-28021)Serhiy Storchaka2021-08-292-2/+5
* bpo-25130: Make unit-test about restricting the maximum number of nested bloc...Carl Friedrich Bolz-Tereick2021-08-281-32/+35
* bpo-44962: Fix a race in WeakKeyDict, WeakValueDict and WeakSet when two thre...Thomas Grainger2021-08-282-12/+27
* bpo-45018: Fix rangeiter_reduce in rangeobject.c (GH-27938)chilaxan2021-08-271-16/+31
* bpo-44945: Specialize BINARY_ADD (GH-27967)Mark Shannon2021-08-271-0/+5
* bpo-40635: Fix getfqdn() docstring and docs (GH-27971)andrei kulakov2021-08-261-2/+3
* bpo-45010: Remove support of special method __div__ in unittest.mock (GH-27965)Serhiy Storchaka2021-08-261-1/+1
* bpo-45001: Make email date parsing more robust against malformed input (GH-27...wouter bolsterlee2021-08-262-0/+4
* bpo-45011: Fix test_asyncio without C module _asyncio (GH-27968)Serhiy Storchaka2021-08-264-7/+10
* bpo-44967: pydoc: return non-zero exit code when query is not found (GH-27868)Gregory Anders2021-08-262-21/+24
* bpo-44524: Don't modify MRO when inheriting from typing.Annotated (GH-27841)Ken Jin2021-08-252-1/+11
* bpo-45000: Raise SyntaxError when try to delete __debug__ (GH-27947)Dong-hee Na2021-08-251-0/+4
* bpo-44929: [Enum] Fix global repr (GH-27789)Pablo Galindo Salgado2021-08-252-15/+72
* bpo-37596: Make `set` and `frozenset` marshalling deterministic (GH-27926)Brandt Bucher2021-08-251-0/+25
* bpo-27334: roll back transaction if sqlite3 context manager fails to commit (...Erlend Egeberg Aasland2021-08-251-1/+79
* Add tests for the C tokenizer and expose it as a private module (GH-27924)Pablo Galindo Salgado2021-08-242-2/+869
* bpo-43826: Fix resource warning due to unclosed objects. (GH-25381)Karthikeyan Singaravelan2021-08-241-0/+5
* bpo-34990: Treat the pyc header's mtime in compileall as an unsigned int (GH-...Ammar Askar2021-08-243-11/+33
* bpo-44690: Adopt binacii.a2b_base64's strict mode in base64.b64decode (GH-27272)Idan Moral2021-08-231-3/+4
* bpo-44980: fix test_constructor to return None value (GH-27898)andrei kulakov2021-08-231-1/+1
* bpo-44984: Rewrite test_null_strings in _testcapi (GH-27904)Serhiy Storchaka2021-08-231-0/+12
* Fix bytes.__bytes__ to not truncate at a zero byte (GH-27902)Mark Dickinson2021-08-231-2/+2
* bpo-24234: Implement bytes.__bytes__ (GH-27901)Dong-hee Na2021-08-232-1/+13
* bpo-24234: implement complex.__complex__ (GH-27887)Mark Dickinson2021-08-233-2/+14
* bpo-41322: Add unit tests for deprecation of test return values (GH-27846)andrei kulakov2021-08-224-2/+42
* bpo-44955: Always call stopTestRun() for implicitly created TestResult object...Serhiy Storchaka2021-08-222-53/+99
* bpo-44968: Fix test_subprocess_wait_no_same_group in test_asyncio (GH-27870)Serhiy Storchaka2021-08-211-1/+2
* bpo-44524: Do not set _name of _SpecialForm without need (GH-27861)Serhiy Storchaka2021-08-212-12/+8
* bpo-44960: add regression test for geometric_mean with mixed int/floa… (#27...Irit Katriel2021-08-201-0/+16
* bpo-44954: Fix wrong result in float.fromhex corner case (GH-27834)Mark Dickinson2021-08-201-0/+14
* bpo-41322: added deprecation warning for tests returning value!=None (GH-27748)andrei kulakov2021-08-192-2/+7
* bpo-44947: Refine the syntax error for trailing commas in import statements (...Pablo Galindo Salgado2021-08-181-0/+7
* bpo-44524: Fix cryptic TypeError message when trying to subclass special form...Yurii Karabas2021-08-182-0/+19
* bpo-44949: Fix test_readline auto history tests (#27813)Victor Stinner2021-08-181-2/+6
* bpo-44852: Support filtering over warnings without a set message (GH-27793)Łukasz Langa2021-08-181-4/+5
* bpo-44935: enable posix_spawn() on Solaris (GH-27795)Jakub Kulík2021-08-171-2/+3
* bpo-44698: Restore complex pow behaviour for small integral exponents (GH-27772)Mark Dickinson2021-08-171-0/+28
* bpo-44889: Specialize LOAD_METHOD with PEP 659 adaptive interpreter (GH-27722)Ken Jin2021-08-171-0/+4
* bpo-38956: don't print BooleanOptionalAction's default twice (GH-27672)Maximilian Hils2021-08-162-8/+15
* bpo-44914: Add tests for some invariants of tp_version_tag (GH-27774)Ken Jin2021-08-161-0/+47
* Fix a SystemError in code.replace() (#27771)Guido van Rossum2021-08-161-0/+9
* bpo-44852: Support ignoring specific DeprecationWarnings wholesale in regrtes...Łukasz Langa2021-08-163-0/+68
* bpo-44900: Add five superinstructions. (GH-27741)Mark Shannon2021-08-161-1/+6
* bpo-44895: skip test_no_hang_on_context_chain_cycle2 until the refleak is fix...Irit Katriel2021-08-161-3/+1
* bpo-44911: Fixed IsolatedAsyncioTestCase from throwing an exception on leaked...Bar Harel2021-08-162-1/+21
* bpo-16580: [doc] Add examples to int.to_bytes and int.from_bytes (GH-27760)Gautam Chaudhuri2021-08-151-0/+42
* bpo-30077: Add support for Apple aifc/sowt pseudo-compression (GH-24449)dnknth2021-08-131-4/+19
* bpo-26228: [doc] Adapt PTY documentation updates from GH-4167 (GH-27754)Łukasz Langa2021-08-131-1/+1
* Added test case based on recommended test cases from RFC 4648 (GH-27747)andrei kulakov2021-08-131-0/+39