summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-21263: Skip test_gdb when python has been compiled with LLVM clang (GH-10...Lysandros Nikolaou2018-11-041-0/+5
* bpo-34969: Add --fast, --best on the gzip CLI (GH-9833)Stéphane Wirtel2018-11-032-7/+52
* bpo-33578: Fix getstate/setstate for CJK decoder (GH-10290)Christopher Thorne2018-11-021-0/+4
* bpo-33578: Add getstate/setstate for CJK codec (GH-6984)Christopher Thorne2018-11-012-0/+141
* bpo-35128: Fix spacing issues in warning.warn() messages. (GH-10268)Pablo Aguiar2018-11-015-6/+6
* bpo-35062: Fix parsing _io.IncrementalNewlineDecoder's *translate* argument. ...Xiang Zhang2018-10-311-0/+10
* bpo-33138: Change standard error message for non-pickleable and non-copyable ...Serhiy Storchaka2018-10-313-10/+12
* bpo-31680: Add curses.ncurses_version. (GH-4217)Serhiy Storchaka2018-10-301-3/+19
* bpo-33237: Improve AttributeError message for partially initialized module. (...Serhiy Storchaka2018-10-303-0/+17
* bpo-34876: Change the lineno of the AST for decorated function and class. (GH...Serhiy Storchaka2018-10-302-2/+58
* bpo-35031: Fix test_start_tls_server_1 on FreeBSD buildbots (GH-10011)Pablo Galindo2018-10-291-0/+7
* bpo-34945: Buffer output in test suite only when creating junit file (GH-10204)Pablo Galindo2018-10-292-14/+16
* bpo-34160: Preserve user specified order of Element attributes in html. (GH-1...Serhiy Storchaka2018-10-292-9/+5
* bpo-33331: Clean modules in the reversed order in PyImport_Cleanup(). (GH-6565)Serhiy Storchaka2018-10-291-56/+62
* bpo-35097: Add IDLE doc subsection explaining editor windows. (#10206)Terry Jan Reedy2018-10-291-0/+17
* bpo-35047, unittest.mock: Better error messages on assert_called_xxx failures...Petter Strandmark2018-10-282-8/+58
* Issue 35093: Document the IDLE document viewer in the IDLE doc. (#10195)Terry Jan Reedy2018-10-281-10/+20
* bpo-33234 Improve list() pre-sizing for inputs with known lengths (GH-9846)Pablo Galindo2018-10-281-0/+9
* Fix yet one error in checking Tcl version. (GH-10189)Serhiy Storchaka2018-10-281-1/+1
* bpo-34160: Preserve user specified order of Element attributes (GH-10163)Raymond Hettinger2018-10-282-1/+21
* Fix checking for bugfix Tcl version. (GH-10185)Serhiy Storchaka2018-10-281-1/+1
* bpo-1529353: Explain Shell text squeezing in the IDLE doc. (#10169)Terry Jan Reedy2018-10-281-2/+19
* bpo-32892: Support subclasses of base types in isinstance checks for AST cons...Serhiy Storchaka2018-10-282-1/+5
* bpo-35088: Update idlelib.help.copy_string docstring (#10164)Terry Jan Reedy2018-10-281-17/+17
* bpo-35087: Update idlelib help files for the current doc build. (GH-10162)Terry Jan Reedy2018-10-282-78/+98
* bpo-34751: improved hash function for tuples (GH-9471)jdemeyer2018-10-281-18/+93
* bpo-35067: Remove _distutils_findvs and use vswhere.exe instead. (GH-10095)Steve Dower2018-10-271-32/+32
* bpo-33710: Deprecate l*gettext() and related functions in the gettext module....Serhiy Storchaka2018-10-272-64/+193
* bpo-35024: Remove redundant and possibly incorrect verbose message after writ...Quentin Agren2018-10-261-1/+0
* bpo-34789: make xml.sax.make_parser accept iterables of all types (GH-9576)Andrés Delfino2018-10-262-4/+32
* bpo-35017, socketserver: don't accept request after shutdown (GH-9952)Denis Ledoux2018-10-261-0/+3
* bpo-34890: Make iscoroutinefunction, isgeneratorfunction and isasyncgenfuncti...Pablo Galindo2018-10-264-12/+46
* bpo-9263: _Py_NegativeRefcount() use _PyObject_AssertFailed() (GH-10109)Victor Stinner2018-10-261-2/+3
* bpo-35022: unittest.mock.MagicMock now also supports __fspath__ (GH-9960)Max Bélanger2018-10-252-0/+12
* bpo-9263: Dump Python object on GC assertion failure (GH-10062)Victor Stinner2018-10-251-3/+66
* bpo-35059: Add Py_STATIC_INLINE() macro (GH-10093)Victor Stinner2018-10-251-0/+17
* bpo-31047: Fix ntpath.abspath to trim ending separator (GH-10082)Tim Graham2018-10-252-1/+3
* bpo-32321: Add pure Python fallback for functools.reduce (GH-8548)madman-bob2018-10-252-36/+78
* bpo-35053: Enhance tracemalloc to trace free lists (GH-10063)Victor Stinner2018-10-251-0/+20
* importlib: Fix typo in SourceLoader.path_stats docstring (GH-10052)Quentin2018-10-251-3/+4
* turtledemo/penrose.py: remove unused clock() calls (GH-10033)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-10-241-3/+0
* bpo-34260, shutil: fix copy2 and copystat documentation (GH-8523)Zsolt Cserna2018-10-231-5/+11
* bpo-35028: cgi: Fix max_num_fields off by one error (GH-9973)matthewbelisle-wf2018-10-232-18/+24
* bpo-35046: do only one system call per line (logging.StreamHandler) (GH-10042)Josh Snyder2018-10-231-2/+2
* bpo-34482: test datetime classes' handling of non-UTF-8-encodable strings (GH...Alexey Izbyshev2018-10-231-0/+40
* bpo-34454: Clean up datetime.fromisoformat surrogate handling (GH-8959)Paul Ganssle2018-10-222-4/+13
* bpo-29843: raise AttributeError if given negative _length_ (GH-10029)Tal Einat2018-10-221-5/+19
* bpo-34984: Improve error messages for bytes and bytearray constructors. (GH-9...Serhiy Storchaka2018-10-211-0/+2
* bpo-34973: Fix crash in bytes constructor. (GH-9841)Serhiy Storchaka2018-10-211-0/+17
* bpo-8525: help() on a type now shows builtin subclasses (GH-5066)Sanyam Khurana2018-10-212-0/+136