summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-35029: Replace the SyntaxWarning exception with a SyntaxError. (GH-9999)Serhiy Storchaka2018-10-211-0/+9
* bpo-34574: Prevent OrderedDict iterators from exhaustion during pickling. (GH...Sergey Fedoseev2018-10-201-0/+17
* bpo-34983: Expose symtable.Symbol.is_nonlocal() in the symtable module (GH-9872)Pablo Galindo2018-10-202-3/+25
* bpo-32890, os: Use errno instead of GetLastError() in execve() and truncate()...Alexey Izbyshev2018-10-201-0/+10
* bpo-32236: open() emits RuntimeWarning if buffering=1 for binary mode (GH-4842)Alexey Izbyshev2018-10-208-25/+74
* bpo-34536: Cleanup test_enum imports (GH-9979)Victor Stinner2018-10-191-5/+0
* bpo-33594: Add deprecation info in inspect.py module (GH-7036)Matthias Bussonnier2018-10-191-7/+15
* bpo-33712: OrderedDict only creates od_fast_nodes cache if needed (GH-7349)Serhiy Storchaka2018-10-191-2/+2
* unittest.mock doc: Fix references to recursive seal of Mocks (GH-9028)Mario Corchero2018-10-191-5/+4
* bpo-25750: Add test on bad descriptor __get__() (GH-9084)jdemeyer2018-10-191-0/+21
* bpo-33073: Rework int.as_integer_ratio() implementation (GH-9303)Serhiy Storchaka2018-10-191-28/+6
* bpo-33947: dataclasses no longer can raise RecursionError in repr (GF9916)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-10-192-6/+117
* bpo-32912: Replace a DeprecationWarning with a SyntaxWarning (GH-9652)Serhiy Storchaka2018-10-192-7/+7
* bpo-34866: Adding max_num_fields to cgi.FieldStorage (GH-9660)matthewbelisle-wf2018-10-194-12/+100
* bpo-35013: Add more type checks for children of Element. (GH-9944)Serhiy Storchaka2018-10-192-25/+27
* bpo-31522: mailbox.get_string: pass `from_` parameter to `get_bytes` (#9857)Cheryl Sabella2018-10-192-1/+29
* bpo-34936: Fix TclError in tkinter.Spinbox.selection_element(). (GH-9760)Juliette Monsel2018-10-182-5/+12
* bpo-35008: Fix possible leaks in Element.__setstate__(). (GH-9924)Serhiy Storchaka2018-10-181-0/+16
* bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705)Stéphane Wirtel2018-10-171-2/+11
* bpo-23420: Verify the value of '-s' when execute the CLI of cProfile (GH-9925)Stéphane Wirtel2018-10-172-2/+10