summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-35230: dict: Remove some macros (GH-10513)INADA Naoki2018-11-142-44/+59
* Grammar corrections in abc.rst (GH-10525)Andrés Delfino2018-11-141-3/+3
* Link to property built-in in abc.rst (GH-10526)Andrés Delfino2018-11-141-1/+1
* Fix doc typo: Window -> Windows (GH-10508)l-n-s2018-11-141-1/+1
* bpo-35233: Rewrite test_embed.InitConfigTests (GH-10524)Victor Stinner2018-11-136-179/+241
* bpo-35214: Fix OOB memory access in unicode escape parser (GH-10506)Gregory P. Smith2018-11-132-1/+4
* bpo-35233: Fix _PyMainInterpreterConfig_Copy() (GH-10519)Victor Stinner2018-11-136-67/+215
* bpo-29564:_PyMem_DumpTraceback() suggests enabling tracemalloc (GH-10510)Victor Stinner2018-11-132-0/+10
* bpo-34784: Fix PyStructSequence_NewType with heap-allocated StructSequence (G...Eddie Elizondo2018-11-135-137/+239
* bpo-35081: Make some _PyGC macros internal (GH-10507)Victor Stinner2018-11-135-38/+52
* bpo-35081: Remove Py_BUILD_CORE from datetime.h (GH-10416)Paul Ganssle2018-11-132-29/+28
* bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503)Gregory P. Smith2018-11-136-10/+10
* Fix a couple documentation typos. (GH-10498)Windson yang2018-11-132-2/+2
* Disable getc_unlocked() with MemorySanitizer. (GH-10499)Gregory P. Smith2018-11-131-1/+2
* bpo-29564: warnings suggests to enable tracemalloc (GH-10486)Victor Stinner2018-11-133-11/+40
* bpo-35214: Initial clang MemorySanitizer support (GH-10479)Gregory P. Smith2018-11-129-4/+115
* Improve grammar in Glossary. (GH-10474)Windson yang2018-11-121-2/+2
* Correct grammar mistake in stdtypes.rst (GH-10481)Andrés Delfino2018-11-121-1/+1
* bpo-30064: Refactor sock_* asyncio API (#10419)Andrew Svetlov2018-11-125-446/+167
* Linkify PEP 8 in unix.rst (GH-10482)Andrés Delfino2018-11-121-1/+1
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-1265-95/+102
* bpo-33695 shutil.copytree() + os.scandir() cache (#7874)Giampaolo Rodola2018-11-123-56/+96
* Minor grammar improvement to io documentation. (GH-10329)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-11-121-1/+1
* Update subprocess.Popen documentation wrt universal_newlines arg (GH-10337)Jakub Stasiak2018-11-121-3/+8
* bpo-33878: Doc: Fix missing case by simplifying. (GH-7762)Julien Palard2018-11-111-6/+3
* bpo-35177: Add dependencies between header files (GH-10361)Victor Stinner2018-11-1113-26/+42
* closes bpo-35204: Disable thread and memory sanitizers for address_in_range()...Alexey Izbyshev2018-11-111-12/+31
* Neaten the code without any algorithmic change. (GH-10466)Raymond Hettinger2018-11-111-5/+2
* bpo-33699: Describe try's else clause with the rest of the try clause (GH-7252)Andrés Delfino2018-11-111-7/+5
* dict insertion order is guaranteed since 3.7 (GH-10431)Andrés Delfino2018-11-111-1/+1
* bpo-34864: Document two IDLE on MacOS issues. (GH-10456)Terry Jan Reedy2018-11-113-13/+37
* bpo-35202: Remove unused imports in Lib directory. (GH-10446)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-11-107-9/+0
* bpo-35202: Remove unused imports in idlelib (GH-10438)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-11-107-6/+2
* bpo-35202: Remove unused imports in Lib directory. (GH-10445)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-11-103-3/+0
* Doc: Simplify Copyright line in README (GH-10287)David Kleuker2018-11-101-6/+2
* Correct a typo in the Unittest documentation (GH-10397)Géry Ogam2018-11-091-1/+1
* bpo-35199: Add an internal _PyTuple_ITEMS() macro (GH-10434)Victor Stinner2018-11-099-23/+27
* bpo-35081: Internal headers require Py_BUILD_CORE (GH-10363)Victor Stinner2018-11-0916-13/+48
* Hoist the float conversion out of the inner loop. (GH-10430)Raymond Hettinger2018-11-091-1/+2
* Optimize set.pop() to advance a pointer instead of indexing. (GH-10429)Raymond Hettinger2018-11-091-7/+8
* Cleanup and improve the regex tokenizer example. (GH-10426)Raymond Hettinger2018-11-091-36/+38
* Fixing wording in comment. (GH-10425)Raymond Hettinger2018-11-091-1/+1
* bpo-35194: Fix a wrong constant in cp932 codec (GH-10420)Alexey Izbyshev2018-11-091-1/+1
* bpo-24412: Adds cleanUps for setUpClass and setUpModule. (GH-9190)Lisa Roach2018-11-097-18/+783
* bpo-35193: Fix an off by one error in the RETURN_VALUE case. (GH-10418)Gregory P. Smith2018-11-093-10/+34
* bpo-35065: Remove `StreamReaderProtocol._untrack_reader` (#10212)Vincent Michel2018-11-084-11/+26
* Replace dead code with an assertion in winreg.c. (GH-10028)Zackery Spytz2018-11-081-2/+1
* bpo-34966: Improve support of method aliases in pydoc. (GH-9823)Serhiy Storchaka2018-11-083-4/+104
* Revert "bpo-32409: Fix regression in activate.bat on international Windows (G...Pablo Galindo2018-11-072-7/+6
* Doc: Make all versions sidebars the same for consistency. (GH-10288)Julien Palard2018-11-071-2/+3