summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* Issue #1584: Provide options to override default search paths for Tcl and TkNed Deily2013-09-061-0/+6
* Nerge 3.3 into default.Tim Peters2013-09-061-0/+2
|\
| * Issue #18942: sys._debugmallocstats() output was damaged on Windows.Tim Peters2013-09-061-0/+2
* | Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output inSerhiy Storchaka2013-09-051-0/+3
|\ \ | |/
| * Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output inSerhiy Storchaka2013-09-051-0/+3
* | Issue #18922: Now The Lib/smtpd.py and Tools/i18n/msgfmt.py scripts writeSerhiy Storchaka2013-09-051-0/+6
* | Issue #18830: inspect.getclasstree() no more produces duplicated entries evenSerhiy Storchaka2013-09-051-0/+3
|\ \ | |/
| * Issue #18830: inspect.getclasstree() no more produces duplicated entries evenSerhiy Storchaka2013-09-051-0/+3
* | Issue #18878: sunau.open now supports the context manager protocol. Based onSerhiy Storchaka2013-09-051-0/+3
* | (Merge 3.3) Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit,Victor Stinner2013-09-041-0/+3
|\ \ | |/
| * Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don't castVictor Stinner2013-09-041-0/+3
* | Issue #18876: The FileIO.mode attribute now better reflects the actual mode u...Antoine Pitrou2013-09-041-0/+3
|\ \ | |/
| * Issue #18876: The FileIO.mode attribute now better reflects the actual mode u...Antoine Pitrou2013-09-041-0/+3
* | Issue #16853: Add new selectors module.Charles-François Natali2013-09-041-0/+2
* | Issue #18882: Add threading.main_thread() function.Andrew Svetlov2013-09-041-0/+2
* | Issue #16826: Revert fix while Windows issues are being worked out.Meador Inge2013-09-041-2/+0
|\ \ | |/
| * Issue #16826: Revert fix while Windows issues are being worked out.Meador Inge2013-09-041-2/+0
* | Merge heads.Meador Inge2013-09-031-0/+2
|\ \
| * \ Issue #16826: Don't check for PYTHONCASEOK when using -E.Meador Inge2013-09-031-0/+2
| |\ \ | | |/
| | * Issue #16826: Don't check for PYTHONCASEOK when using -E.Meador Inge2013-09-031-0/+2
* | | Issue #18901: The sunau getparams method now returns a namedtuple rather thanSerhiy Storchaka2013-09-031-0/+3
* | | Issue #17487: The result of the wave getparams method now is pickleable again.Serhiy Storchaka2013-09-031-0/+3
|/ /
* | Issue #18912: Fix indentation in docstringEli Bendersky2013-09-031-0/+1
|\ \ | |/
* | Issue #12037: Fix test_email for desktop Windows.Terry Jan Reedy2013-08-311-0/+2
|\ \ | |/
| * Issue #12037: Fix test_email for desktop Windows.Terry Jan Reedy2013-08-311-0/+2
* | Merge from 3.3 #18489 Search Engine testsTerry Jan Reedy2013-08-311-0/+5
|\ \ | |/
| * Issue #18489: Add complete, gui-free tests for idlelib.SearchEngine.Terry Jan Reedy2013-08-311-0/+2
* | Close #18780: %-formatting now prints value for int subclasses with %d, %i, a...Ethan Furman2013-08-311-0/+3
* | Issue #18756: os.urandom() now uses a lazily-opened persistent file descripto...Antoine Pitrou2013-08-301-0/+4
* | Issue #18418: After fork(), reinit all threads states, not only active ones.Charles-François Natali2013-08-302-0/+4
|\ \ | |/
| * Issue #18418: After fork(), reinit all threads states, not only active ones.Charles-François Natali2013-08-302-0/+4
* | Fixes Issue #15507: test_subprocess's test_send_signal could fail if the testGregory P. Smith2013-08-291-0/+5
|\ \ | |/
| * Fixes issue #15507: test_subprocess's test_send_signal could fail if the testGregory P. Smith2013-08-291-0/+5
* | Issue #17974: Switch unittest from using getopt to using argparse.Serhiy Storchaka2013-08-291-0/+2
* | Issue #16799: Switched from getopt to argparse style in regrtest's argumentSerhiy Storchaka2013-08-291-0/+3
* | Issue #18743: Fix references to non-existant "StringIO" moduleSerhiy Storchaka2013-08-291-0/+2
|\ \ | |/
| * Issue #18743: Fix references to non-existant "StringIO" moduleSerhiy Storchaka2013-08-291-0/+2
* | Issue #11798: TestSuite now drops references to own tests after execution.Andrew Svetlov2013-08-282-0/+4
* | Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-271-0/+5
* | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-0/+6
|\ \ | |/
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-0/+3
* | Close #11619: The parser and the import machinery do not encode UnicodeVictor Stinner2013-08-261-0/+3
* | #18833: merge with 3.3.Ezio Melotti2013-08-251-0/+1
|\ \ | |/
| * #18833: add a test for test_telnetlib. Patch by Alex Volkov.Ezio Melotti2013-08-251-0/+1
* | Issue #18808: Non-daemon threads are now automatically joined when a sub-inte...Antoine Pitrou2013-08-251-0/+3
* | Issue #18817: Fix a resource warning in Lib/aifc.py demo. Patch bySerhiy Storchaka2013-08-251-0/+3
|\ \ | |/
| * Issue #18817: Fix a resource warning in Lib/aifc.py demo.Serhiy Storchaka2013-08-251-0/+2
* | Merge #16611: BaseCookie now parses 'secure' and 'httponly' flags.R David Murray2013-08-251-0/+3
|\ \ | |/
| * #16611: BaseCookie now parses 'secure' and 'httponly' flags.R David Murray2013-08-251-0/+3
* | Issue #11973: Fix a problem in kevent. The flags and fflags fields are nowChristian Heimes2013-08-251-0/+3
|\ \ | |/