summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)Gabriele N. Tornetta2021-07-0720-7435/+7448
* Doc: Fix link in multiprocessing.starmap pointing to builtin map. (GH-26560)Julien Palard2021-07-071-2/+3
* bpo-44490: Add __parameters__ and __getitem__ to types.Union (GH-26980)Yurii Karabas2021-07-065-19/+101
* bpo-38291: Fix a spurious warning when using help(object) (#27039)Sebastian Rittau2021-07-061-1/+1
* bpo-44563: Fix error handling in tee.fromiterable() (GH-27020)Serhiy Storchaka2021-07-051-9/+10
* bpo-43453: Update and re-add example to typing runtime_checkable (#27013)andrei kulakov2021-07-051-2/+7
* bpo-44479: Regenerate test_frozenmain.h and frozen_hello.h during build on Wi...Steve Dower2021-07-053-29/+49
* bpo-44022: Fix Sphinx role in NEWS entry (GH-27033)Sergey Fedoseev2021-07-051-1/+1
* bpo-44562: Use PyType_GenericAlloc in Py_GenericAlias (GH-27021)Pablo Galindo2021-07-051-2/+2
* bpo-44558: Make the implementation consistency of operator.indexOf (GH-27012)Dong-hee Na2021-07-053-1/+6
* bpo-44534: fix wording and docstring sync in unittest.Mock GH27000Jack DeVries2021-07-052-1/+6
* bpo-41486: zlib uses an UINT32_MAX sliding window for the output buffer (GH-2...Ma Lin2021-07-052-30/+117
* bpo-43950: Print columns in tracebacks (PEP 657) (GH-26958)Ammar Askar2021-07-0412-74/+348
* bpo-43950: include position in dis.Instruction (GH-27015)Batuhan Taskaya2021-07-042-197/+287
* bpo-43950: use 0-indexed column offsets for bytecode positions (GH-27011)Batuhan Taskaya2021-07-043-22/+19
* bpo-44562: Remove invalid PyObject_GC_Del from error path of types.GenericAli...Ken Jin2021-07-042-3/+5
* bpo-44553: Correct failure in tp_new for the union object (GH-27008)Pablo Galindo2021-07-031-2/+2
* bpo-34266: [pdb] handle ValueError from shlex.split() (GH-26656)Irit Katriel2021-07-033-1/+21
* bpo-44129: Add descriptive global variables for general purpose bit flags (GH...Daniel Hillier2021-07-032-13/+39
* Fix a small typo in the docs (GH-26991)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2021-07-031-1/+1
* bpo-44553 : Implement GC methods for types.Union (GH-26993)Ken Jin2021-07-033-5/+38
* bpo-42238: rstlint: Add two new checks. (GH-26966)Julien Palard2021-07-031-8/+91
* bpo-44388: Update venv EnvBuilder.ensure_directories() docs. (GH-26663)Matthew Clapp2021-07-021-5/+6
* bpo-43950: optimize column table assembling with pre-sizing object (GH-26997)Batuhan Taskaya2021-07-021-6/+13
* bpo-30256: [doc] Fix formatting error in news (GH-26994)Ken Jin2021-07-021-1/+1
* bpo-43950: Add code.co_positions (PEP 657) (GH-26955)Pablo Galindo2021-07-0215-5177/+7622
* bpo-34798: [doc] clearer presentation of pprint.PrettyPrinter constru… (GH-...Irit Katriel2021-07-022-18/+31
* bpo-30256: Add manager_owned keyword arg to AutoProxy (GH-16341)finefoot2021-07-024-2/+15
* bpo-43425: Update setup.py not to use distutils.log (GH-26969)Dong-hee Na2021-07-021-16/+23
* bpo-44313: bump up magic (#26983)Batuhan Taskaya2021-07-012-2/+2
* bpo-43234: Prohibit non-ThreadPoolExecutor in loop.set_default_executor (GH-2...Illia Volochii2021-07-015-17/+21
* bpo-43216: Remove @asyncio.coroutine (GH-26369)Illia Volochii2021-07-0111-764/+86
* Add file describing how to add or modify specialized families of instructions...Mark Shannon2021-07-012-0/+135
* bpo-43770: Cleanup _PyObject_GetMethod() (GH-26946)Victor Stinner2021-07-011-21/+19
* bpo-43425: Update _osx_support not to use distutils.log (GH-26968)Dong-hee Na2021-07-011-4/+3
* bpo-44531: Add _PyType_AllocNoTrack() function (GH-26947)Victor Stinner2021-07-014-28/+51
* bpo-44313: generate LOAD_ATTR/CALL_FUNCTION for top-level imported objects (G...Batuhan Taskaya2021-06-309-214/+279
* Fix compiler errors for unused variables in marshal.c (GH-26977)Pablo Galindo2021-06-301-2/+0
* bpo-44535: Enable building with Visual Studio 2022 on Windows (GH-26962)Steve Dower2021-06-302-0/+2
* bpo-41180: Fixes documentation to specify correct event name and add versionc...Steve Dower2021-06-301-1/+11
* bpo-41180: Replace marshal code.__new__ audit event with marshal.load[s] and ...Steve Dower2021-06-305-10/+65
* Doc: fix a rst tag. (GH-26965)Julien Palard2021-06-301-6/+6
* bpo-43232: Remove previously deprecated methods on TransportSocket (GH-24538)Illia Volochii2021-06-302-108/+2
* bpo-44523: Remove the pass-through for hash() in weakref proxy objects (GH-26...Pablo Galindo2021-06-293-20/+15
* bpo-38062: [doc] clarify that atexit uses equality comparisons internally. (G...Jack DeVries2021-06-292-5/+7
* bpo-44531: Fix type_repr() if tp_name is NULL (GH-26948)Victor Stinner2021-06-291-0/+6
* Doc: Remove trailing whitespaces. (GH-26953)Julien Palard2021-06-291-3/+3
* bpo-42588: Update the docs for the TopologicalSorter.static_order() method (G...andrei kulakov2021-06-291-4/+5
* bpo-44471: Change error type for bad objects in ExitStack.enter_context() (GH...Serhiy Storchaka2021-06-296-8/+91
* bpo-12022: Change error type for bad objects in "with" and "async with" (GH-2...Serhiy Storchaka2021-06-296-26/+48