summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Fix checking for bugfix Tcl version. (GH-10185)Serhiy Storchaka2018-10-281-1/+1
* bpo-35090: Fix potential division by zero in allocator wrappers (GH-10174)Alexey Izbyshev2018-10-283-5/+5
* bpo-1529353: Explain Shell text squeezing in the IDLE doc. (#10169)Terry Jan Reedy2018-10-282-3/+39
* bpo-35089: Don't mention typing.io and typing.re (GH-10173)Sebastian Rittau2018-10-282-16/+11
* bpo-34672: fix a compiler warning in timemodule.c (GH-10176)Xiang Zhang2018-10-281-1/+1
* bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-1...Pablo Galindo2018-10-287-31/+31
* bpo-32892: Support subclasses of base types in isinstance checks for AST cons...Serhiy Storchaka2018-10-282-1/+5
* bpo-35054: Add yet more index entries for symbols. (GH-10121)Serhiy Storchaka2018-10-2830-190/+223
* Fix mistakes on function coroutines related definitions (GH-9871)Andrés Delfino2018-10-281-8/+8
* bpo-35088: Update idlelib.help.copy_string docstring (#10164)Terry Jan Reedy2018-10-282-17/+19
* bpo-35087: Update idlelib help files for the current doc build. (GH-10162)Terry Jan Reedy2018-10-283-78/+100
* bpo-34751: improved hash function for tuples (GH-9471)jdemeyer2018-10-283-43/+143
* bpo-35067: Remove _distutils_findvs and use vswhere.exe instead. (GH-10095)Steve Dower2018-10-2714-1240/+35
* unittest documentation: Spell pytest without the dot (GH-9820)Andreas Pelme2018-10-271-1/+1
* Fix typo in zipfile documentation. (GH-10151)nsrip2018-10-271-1/+1
* bpo-33710: Deprecate l*gettext() and related functions in the gettext module....Serhiy Storchaka2018-10-275-67/+233
* bpo-35079: Revise difflib.SequenceManager.get_matching_blocks doc (GH-10144)Terry Jan Reedy2018-10-272-3/+6
* bpo-35042: Use the :pep: role where a PEP is specified (#10036)Stéphane Wirtel2018-10-2640-94/+95
* bpo-35024: Remove redundant and possibly incorrect verbose message after writ...Quentin Agren2018-10-263-1346/+1346
* Fix a typo in asyncio-dev.rst. (GH-10133)Benjamin Peterson2018-10-261-1/+1
* bpo-9263: _PyXXX_CheckConsistency() use _PyObject_ASSERT() (GH-10108)Victor Stinner2018-10-263-52/+64
* bpo-9263: Use _PyObject_ASSERT() in typeobject.c (GH-10111)Victor Stinner2018-10-261-10/+13
* bpo-9263: Use _PyObject_ASSERT() in gcmodule.c (GH-10112)Victor Stinner2018-10-261-46/+56
* bpo-9263: Use _PyObject_ASSERT() in object.c (GH-10110)Victor Stinner2018-10-261-18/+22
* bpo-35059, libmpdec: Add missing EXTINLINE in mpdecimal.h (GH-10128)Victor Stinner2018-10-261-5/+5
* bpo-34789: make xml.sax.make_parser accept iterables of all types (GH-9576)Andrés Delfino2018-10-264-5/+38
* bpo-35017, socketserver: don't accept request after shutdown (GH-9952)Denis Ledoux2018-10-262-0/+6
* Simplify the warning for http.server. (#10116)Senthil Kumaran2018-10-261-4/+2
* bpo-35059, PCbuild: Expand inline funcs in Debug (GH-10094)Victor Stinner2018-10-262-0/+6
* bpo-35059: Convert PyObject_INIT() to function (GH-10077)Victor Stinner2018-10-268-16/+33
* bpo-34890: Make iscoroutinefunction, isgeneratorfunction and isasyncgenfuncti...Pablo Galindo2018-10-266-12/+61
* bpo-35044, doc: Use the :exc: role for the exceptions (GH-10037)Stéphane Wirtel2018-10-2617-17/+19
* bpo-35054: Add more index entries for symbols. (GH-10064)Serhiy Storchaka2018-10-2626-64/+466
* bpo-9263: _Py_NegativeRefcount() use _PyObject_AssertFailed() (GH-10109)Victor Stinner2018-10-262-10/+8
* bpo-35053: Define _PyTraceMalloc_NewReference in object.h (GH-10107)Victor Stinner2018-10-253-4/+7
* bpo-35022: unittest.mock.MagicMock now also supports __fspath__ (GH-9960)Max Bélanger2018-10-254-0/+18
* bpo-35038: AttributeError: 'frame' object has no attribute 'f_restricted'. (G...Stéphane Wirtel2018-10-252-3/+2
* Fix grammar in using/unix build instruction docs (GH-10009)Stéphane Wirtel2018-10-251-4/+4
* bpo-9263: Dump Python object on GC assertion failure (GH-10062)Victor Stinner2018-10-256-13/+179
* bpo-35059: Add Py_STATIC_INLINE() macro (GH-10093)Victor Stinner2018-10-256-38/+94
* bpo-31047: Fix ntpath.abspath to trim ending separator (GH-10082)Tim Graham2018-10-253-1/+5
* bpo-32321: Add pure Python fallback for functools.reduce (GH-8548)madman-bob2018-10-253-36/+80
* bpo-35053: Add Include/tracemalloc.h (GH-10091)Victor Stinner2018-10-257-37/+54
* bpo-35053: Enhance tracemalloc to trace free lists (GH-10063)Victor Stinner2018-10-257-51/+157
* importlib: Fix typo in SourceLoader.path_stats docstring (GH-10052)Quentin2018-10-252-1500/+1500
* bpo-28015: Support LTO build with clang (GH-9908)serge-sans-paille2018-10-244-83/+235
* configparser doc: Properly label ConfigParser attributes (GH-9930)Ned Batchelder2018-10-241-3/+3
* importlib doc: Fix approximated import_module() code (GH-9945)orlnub1232018-10-241-1/+1
* bpo-35027, distutils doc: Correct note on setup.py change in Python 3.7 (GH-1...TilmanK2018-10-241-3/+2
* turtledemo/penrose.py: remove unused clock() calls (GH-10033)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-10-241-3/+0