summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-45239: Fix parsedate_tz when time has more than 2 dots in it (GH-28452)Ben Hoyt2021-10-133-0/+6
* bpo-45229: Make tkinter tests discoverable (GH-28637)Serhiy Storchaka2021-10-1318-606/+498
* bpo-45410: regrtest replaces print_warning.orig_stderr (GH-28926)Victor Stinner2021-10-133-3/+53
* bpo-45434: Mark the PyTokenizer C API as private (GH-28924)Victor Stinner2021-10-137-48/+40
* bpo-45256: Fix cleanup of stolen locals for Python-to-Python calls (GH-28905)Pablo Galindo Salgado2021-10-131-10/+24
* bpo-45434: Remove pystrhex.h header file (GH-28923)Victor Stinner2021-10-1322-63/+93
* bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)Mark Shannon2021-10-1318-400/+721
* bpo-45434: Move _Py_BEGIN_SUPPRESS_IPH to pycore_fileutils.h (GH-28922)Victor Stinner2021-10-1310-42/+44
* pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)Victor Stinner2021-10-1323-77/+87
* bpo-45410: regrtest -W leaves stdout/err FD unchanged (GH-28915)Victor Stinner2021-10-137-82/+19
* bpo-20692: Add Programming FAQ entry for 1.__class__ error. (GH-28918)Terry Jan Reedy2021-10-132-0/+23
* bpo-45453: Fix test_embed.StdPrinterTests (GH-28916)Victor Stinner2021-10-131-8/+4
* bpo-45434: bytearrayobject.h no longer includes <stdarg.h> (GH-28913)Victor Stinner2021-10-135-6/+3
* bpo-45434: Convert Py_GETENV() macro to a function (GH-28912)Victor Stinner2021-10-132-1/+9
* bpo-45405: Prevent ``internal configure error`` when running ``configure`` w...David Bohman2021-10-133-6/+12
* bpo-45410: Enhance libregrtest -W/--verbose3 option (GH-28908)Victor Stinner2021-10-123-15/+72
* Fix spelling in Misc (GH-28858)1809092021-10-121-1/+1
* bpo-45421: Remove dead code from html.parser (GH-28847)Alberto Mardegan2021-10-121-7/+0
* bpo-44991: Normalise function and collation callback naming (GH-28209)Erlend Egeberg Aasland2021-10-121-7/+5
* bpo-45441: Update some moved URLs in documentation (GH-28861)1809092021-10-124-6/+6
* Slight correct grammar (GH-28860)nobodyatandnothing2021-10-121-1/+1
* Fix format string in _PyImport_LoadDynamicModuleWithSpec() (GH-28863)Serhiy Storchaka2021-10-121-1/+1
* bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner2021-10-1238-64/+89
* bpo-45433: Do not link libpython against libcrypt (GH-28881)Mike Gilbert2021-10-114-0/+9
* bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner2021-10-1137-73/+73
* bpo-45439: _PyObject_Call() only checks tp_vectorcall_offset once (GH-28890)Victor Stinner2021-10-112-23/+37
* bpo-45412: Move copysign() define to pycore_pymath.h (GH-28889)Victor Stinner2021-10-112-52/+49
* bpo-41123: Remove Py_UNICODE_COPY() and Py_UNICODE_FILL() (GH-28887)Victor Stinner2021-10-113-13/+9
* bpo-45434: Python.h no longer includes <stdlib.h> (GH-28888)Victor Stinner2021-10-113-1/+7
* bpo-45412: Move _Py_SET_53BIT_PRECISION_START to pycore_pymath.h (GH-28882)Victor Stinner2021-10-115-90/+113
* bpo-45412: Update _Py_ADJUST_ERANGE1() comment (GH-28884)Victor Stinner2021-10-111-2/+9
* bpo-45410: Add test.support.flush_std_streams() (GH-28885)Victor Stinner2021-10-113-9/+20
* bpo-45434: Cleanup Python.h header file (GH-28883)Victor Stinner2021-10-112-52/+39
* bpo-45412: Remove Py_SET_ERRNO_ON_MATH_ERROR() macro (GH-28820)Victor Stinner2021-10-118-113/+99
* bpo-45351, asyncio: Enhance echo server example, print all addresses (GH-28828)Olaf van der Spek2021-10-111-2/+2
* Handle error when PyUnicode_GetLength returns a negative value. (GH-28859)Dong-hee Na2021-10-111-0/+3
* bpo-20028: Empty escapechar/quotechar is not allowed for csv.Dialect (GH-28833)Dong-hee Na2021-10-114-10/+22
* bpo-45411: Update mimetypes.py (GH-28792)Josephine-Marie2021-10-112-0/+3
* bpo-42253: Update xml.dom.minidom.rst (GH-23126)Jens Diemer2021-10-111-0/+8
* Restore PEP 523 functionality. (GH-28871)Mark Shannon2021-10-113-6/+15
* Fix a leak in _PyImport_LoadDynamicModuleWithSpec() after failing PySys_Audit...Serhiy Storchaka2021-10-111-1/+1
* bpo-45401: Fix a resource warning in test_logging (GH-28864)Serhiy Storchaka2021-10-111-0/+1
* bpo-45416: Fix use of asyncio.Condition() with explicit Lock objects (GH-28850)Joongi Kim2021-10-103-15/+59
* bpo-45401: Change shouldRollover() methods to only rollover regular f… (GH-...Vinay Sajip2021-10-102-4/+25
* Fix class pattern docs to refer to class patterns (GH-28849)Christophe Nanteuil2021-10-101-1/+1
* Remove repeated 'the' in docs (GH-28852)1809092021-10-102-3/+3
* bpo-29410: Change the default hash algorithm to SipHash13. (GH-28752)Inada Naoki2021-10-1011-26/+123
* Fix EncodingWarning in test_tools. (GH-28846)Inada Naoki2021-10-107-25/+29
* bpo-45353: Remind sys.modules users to copy when iterating. (GH-28842)Gregory P. Smith2021-10-091-1/+5
* Fix dataclassses spelling (GH-28837)Landon Yarrington2021-10-093-3/+3