summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* Issue #10590: xml.sax.parseString() now supports string argument.Serhiy Storchaka2015-04-041-0/+2
* Issue #23338: Fixed formatting ctypes error messages on Cygwin.Serhiy Storchaka2015-04-042-0/+4
|\
| * Issue #23338: Fixed formatting ctypes error messages on Cygwin.Serhiy Storchaka2015-04-042-0/+4
* | Moved Misc/NEWS entries not included in 3.5.0 alpha 3 to correct section.Serhiy Storchaka2015-04-041-18/+20
* | Issue #23492: Argument Clinic now generates argument parsing code withSerhiy Storchaka2015-04-031-6/+8
* | Issue #23501: Argumen Clinic now generates code into separate files by default.Serhiy Storchaka2015-04-031-0/+2
* | Issue #23500: Argument Clinic is now smarter about generating the "#ifndef"Larry Hastings2015-04-031-0/+5
* | Issue #15582: inspect.getdoc() now follows inheritance chains.Serhiy Storchaka2015-04-031-0/+2
* | Issue #2175: SAX parsers now support a character stream of InputSource object.Serhiy Storchaka2015-04-021-0/+2
* | Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 andSerhiy Storchaka2015-04-021-0/+3
|\ \ | |/
| * Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 andSerhiy Storchaka2015-04-021-0/+3
* | (Merge 3.4) Issue #23834: Fix socket.sendto(), use the C Py_ssize_t type toVictor Stinner2015-04-021-0/+3
|\ \ | |/
| * Issue #23834: Fix socket.sendto(), use the C Py_ssize_t type to store theVictor Stinner2015-04-021-0/+3
* | Issue #23618: socket.socket.connect() now waits until the connection completesVictor Stinner2015-04-021-0/+6
* | Issue #21526: Fixed support of new boolean type in Tcl 8.5.Serhiy Storchaka2015-04-021-2/+2
|\ \ | |/
| * Issue #21526: Tkinter now supports new boolean type in Tcl 8.5.Serhiy Storchaka2015-04-021-0/+2
* | Issue #22977: Fixed formatting Windows error messages on Wine.Serhiy Storchaka2015-04-021-0/+3
|\ \ | |/
| * Issue #22977: Fixed formatting Windows error messages on Wine.Serhiy Storchaka2015-04-021-0/+3
* | 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
* | Removed unintentional trailing spaces in text files.Serhiy Storchaka2015-03-292-3/+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