summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-35081: Add Include/internal/pycore_object.h (GH-10640)Victor Stinner2018-11-2134-50/+93
* bpo-35189: Fix eintr_tester.py (GH-10637)Victor Stinner2018-11-211-22/+18
* bpo-35035: Rename email.utils documentation to email.utils.rst (GH-10023)Zhiming Wang2018-11-213-1/+2
* bpo-35290: Add debug info to test_c_locale_coercion (GH-10631)Victor Stinner2018-11-211-6/+15
* bpo-35221: Additional hint that the placeholder is to be replaced. (GH-10604)Julien Palard2018-11-211-1/+2
* bpo-35081: Move _PyGC_FINALIZED() back to C API (GH-10626)Victor Stinner2018-11-201-3/+3
* bpo-34532: Fixed exit code for py.exe list versions arg (GH-9039)Brendan Gerrity2018-11-202-4/+6
* bpo-25750: Fix a compiler warning introduced in GH-9084. (GH-10234)Serhiy Storchaka2018-11-201-5/+5
* bpo-35021: Fix assertion failures in _datetimemodule.c. (GH-10039)Serhiy Storchaka2018-11-202-54/+88
* bpo-35169: Improve error messages for forbidden assignments. (GH-10342)Serhiy Storchaka2018-11-206-96/+140
* bpo-9842: Add references for using "..." as a placeholder to the index. (GH-1...Serhiy Storchaka2018-11-203-0/+7
* bpo-31146: Don't fallback switcher to english on not-yet pusblished languages...Julien Palard2018-11-201-0/+6
* bpo-28604: Fix localeconv() for different LC_MONETARY (GH-10606)Victor Stinner2018-11-208-60/+145
* bpo-18859: Document --with-valgrind option in README.valgrind (#10591)Sanyam Khurana2018-11-201-0/+8
* Upgrade pip to 18.1 and setuptools to 40.6.2 (#10598)Donald Stufft2018-11-195-2/+3
* bpo-35269: Fix a possible segfault involving a newly-created coroutine (GH-10...Zackery Spytz2018-11-182-1/+3
* bpo-34725: Adds _Py_SetProgramFullPath so embedders may override sys.executab...Steve Dower2018-11-186-33/+74
* bpo-25438: document what codec PyMemberDef T_STRING decodes the char * as (GH...Windson yang2018-11-171-1/+2
* Add --tempdir option for test run (GH-10322)Steve Dower2018-11-173-11/+9
* bpo-35202: Remove more unused imports in idlelib (GH-10573)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2018-11-174-4/+3
* bpo-28401: prevent Py_DEBUG builds from trying to import limited ABI modules ...Stefano Rivera2018-11-162-0/+5
* Add a missed PyErr_NoMemory() in symtable_new(). (GH-10576)Zackery Spytz2018-11-161-1/+3
* bpo-35202: Remove unused imports in tests. (GH-10561)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-11-1617-18/+1
* bpo-35250: Correct argument name "num" -> "btn" in turtle docs. (GH-10565)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-11-162-8/+8
* Fix outdated info in datamodel about dicts (GH-9807)wim glenn2018-11-161-2/+2
* bpo-33816: Remove outdated metaclass example (GH-7566)Andrés Delfino2018-11-161-34/+2
* bpo-35239: _PySys_EndInit() copies module_search_path (GH-10532)Victor Stinner2018-11-163-13/+28
* bpo-35213: Where appropriate, use 'macOS' in idlelib. (#10478)Terry Jan Reedy2018-11-156-28/+28
* bpo-35202: Remove unused imports in Lib directory (GH-10450)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-11-155-5/+0
* Fix typo in asynchronous generator iterator documentation (GH-10542)Sebastián Ramírez2018-11-151-2/+2
* bpo-34784: Implement correct cleanup in PyStructSequence new implementation (...Pablo Galindo2018-11-151-0/+5
* Fix a possible reference leak in _socket.getaddrinfo(). (GH-10543)Zackery Spytz2018-11-141-2/+4
* bpo-35233: InitConfigTests tests more config vars (GH-10541)Victor Stinner2018-11-146-239/+274
* bpo-32613: Update window FAQ (GH-5552)Julien Palard2018-11-143-45/+26
* 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