summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
Commit message (Expand)AuthorAgeFilesLines
* Issue #23836: Fix the faulthandler module to handle reentrant callsVictor Stinner2015-04-011-0/+3
* Issue #23838: linecache now clears the cache and returns an empty result onSerhiy Storchaka2015-04-011-0/+3
|\
| * Issue #23838: linecache now clears the cache and returns an empty result onSerhiy Storchaka2015-04-011-0/+3
* | Issue #23799: Added test.support.start_threads() for running and cleaning upSerhiy Storchaka2015-04-011-0/+3
|\ \ | |/
| * Issue #23799: Added test.support.start_threads() for running and cleaning upSerhiy Storchaka2015-04-011-0/+3
* | Issue 23793: Add deque support for __add__(), __mul__(), and __imul__().Raymond Hettinger2015-03-311-0/+1
* | Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath.Serhiy Storchaka2015-03-311-0/+3
* | Issue #23611: Serializing more "lookupable" objects (such as unbound methodsSerhiy Storchaka2015-03-311-0/+3
* | Issue #13583: sqlite3.Row now supports slice indexing.Serhiy Storchaka2015-03-311-0/+2
* | Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings.Serhiy Storchaka2015-03-311-0/+4
|\ \ | |/
| * Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings.Serhiy Storchaka2015-03-311-0/+4
* | Issue #23485: select.select() is now retried automatically with the recomputedVictor Stinner2015-03-301-0/+4
* | Issue #23466: %c, %o, %x, and %X in bytes formatting now raise TypeError onSerhiy Storchaka2015-03-301-0/+3
* | Issue #23171: csv.Writer.writerow() now supports arbitrary iterables.Serhiy Storchaka2015-03-301-0/+2
* | Merge: #23745: handle duplicate MIME parameter names in new parser.R David Murray2015-03-301-0/+3
|\ \ | |/
| * #23745: handle duplicate MIME parameter names in new parser.R David Murray2015-03-301-0/+3
* | Issue #23752: When built from an existing file descriptor, io.FileIO() now onlyVictor Stinner2015-03-301-0/+26
* | Issue #22117: Fix os.utime(), it now rounds the timestamp towards minusVictor Stinner2015-03-291-0/+3
* | Issue #22390: test.regrtest now emits a warning if temporary files orSerhiy Storchaka2015-03-291-0/+3
|\ \ | |/
| * Issue #22390: test.regrtest now emits a warning if temporary files orSerhiy Storchaka2015-03-291-0/+3
* | Issue #14260: The groupindex attribute of regular expression pattern objectSerhiy Storchaka2015-03-291-0/+3
* | merge 3.4 (#23801)Benjamin Peterson2015-03-291-0/+3
|\ \ | |/
| * Closes #23801 - Ignore entire preamble to multipart in cgi.FieldStorageDonald Stufft2015-03-291-0/+3
* | Merge: #23792: Ignore KeyboardInterrupt when the pydoc pager is active.R David Murray2015-03-291-0/+4
|\ \ | |/
| * #23792: Ignore KeyboardInterrupt when the pydoc pager is active.R David Murray2015-03-291-0/+4
| * Issue #23803: Fixed str.partition() and str.rpartition() when a separatorSerhiy Storchaka2015-03-291-0/+3
* | Issue #23775: pprint() of OrderedDict now outputs the same representationSerhiy Storchaka2015-03-261-0/+3
* | Issue #23765: Removed IsBadStringPtr calls in ctypesSteve Dower2015-03-261-0/+2
* | Issue #22364: Improved some re error messages using regex for hints.Serhiy Storchaka2015-03-251-0/+2
* | Issue #23742: ntpath.expandvars() no longer loses unbalanced single quotes.Serhiy Storchaka2015-03-251-0/+2
|\ \ | |/
| * Issue #23742: ntpath.expandvars() no longer loses unbalanced single quotes.Serhiy Storchaka2015-03-251-0/+2
* | Issue #21717: The zipfile.ZipFile.open function now supports 'x' (exclusiveSerhiy Storchaka2015-03-251-0/+3
* | Issue #21802: The reader in BufferedRWPair now is closed even when closingSerhiy Storchaka2015-03-241-0/+3
|\ \ | |/
| * Issue #21802: The reader in BufferedRWPair now is closed even when closingSerhiy Storchaka2015-03-241-0/+3
* | Issue #23622: Unknown escapes in regular expressions that consist of ``'\'``Serhiy Storchaka2015-03-241-0/+4
* | Issue #4727: Fixed issue number in Misc/NEWS.Serhiy Storchaka2015-03-241-1/+1
* | Issue #23671: string.Template now allows to specify the "self" parameter asSerhiy Storchaka2015-03-241-0/+4
|\ \ | |/
| * Issue #23671: string.Template now allows to specify the "self" parameter asSerhiy Storchaka2015-03-241-0/+4
* | Issue #23573: Increased performance of string search operations (str.find,Serhiy Storchaka2015-03-241-0/+4
* | Issue #23583: Added tests for standard IO streams in IDLE.Serhiy Storchaka2015-03-241-0/+2
|\ \ | |/
| * Issue #23583: Added tests for standard IO streams in IDLE.Serhiy Storchaka2015-03-241-0/+5
| * Issue #21560: An attempt to write a data of wrong type no longer causeSerhiy Storchaka2015-03-231-0/+3
* | Issue #23502: The pprint module now supports mapping proxies.Serhiy Storchaka2015-03-241-0/+2
* | Issue #17530: pprint now wraps long bytes objects and bytearrays.Serhiy Storchaka2015-03-241-0/+2
* | Issue #22687: Fixed some corner cases in breaking words in tetxtwrap.Serhiy Storchaka2015-03-241-0/+3
* | Issue #20289: The copy module now uses pickle protocol 4 (PEP 3154) andSerhiy Storchaka2015-03-241-0/+4
* | Issue #23753: Python doesn't support anymore platforms without stat() orVictor Stinner2015-03-241-1/+4
* | Misc/NEWS entries for zipapp changesPaul Moore2015-03-231-0/+7
* | Issue #23688: Added support of arbitrary bytes-like objects and avoidedSerhiy Storchaka2015-03-231-0/+4
* | Issue #23252: Added support for writing ZIP files to unseekable streams.Serhiy Storchaka2015-03-221-0/+2