summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
...
* | | | Issue #18873: The tokenize module, IDLE, 2to3, and the findnocoding.py scriptSerhiy Storchaka2013-09-161-0/+8
* | | | Issue #19018: The heapq.merge() function no longer suppresses IndexErrorRaymond Hettinger2013-09-152-0/+5
* | | | Add Germán M. Bravo to Misc/ACKSEli Bendersky2013-09-131-0/+1
* | | | Fix http.server's request handling case on trailing '/'.Senthil Kumaran2013-09-131-0/+4
* | | | Issue #18784: The uuid module no more attempts to load libc via ctypes.CDLL,Serhiy Storchaka2013-09-132-0/+5
* | | | Issue #18988: The "Tab" key now works when a word is already autocompleted.Serhiy Storchaka2013-09-111-0/+2
* | | | Fix a typo. (closes #18953)Serhiy Storchaka2013-09-081-1/+1
* | | | Close #18952: correctly download test support dataNick Coghlan2013-09-081-0/+4
* | | | Issue #18849: Fixed a Windows-specific tempfile bug where collision with anEli Bendersky2013-09-062-0/+5
* | | | 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 #18830: inspect.getclasstree() no more produces duplicated entries evenSerhiy Storchaka2013-09-051-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 #16826: Revert fix while Windows issues are being worked out.Meador Inge2013-09-041-2/+0
* | | | Issue #16826: Don't check for PYTHONCASEOK when using -E.Meador Inge2013-09-031-0/+2
* | | | Issue #12037: Fix test_email for desktop Windows.Terry Jan Reedy2013-08-311-0/+2
* | | | Issue #18489: Add complete, gui-free tests for idlelib.SearchEngine.Terry Jan Reedy2013-08-311-0/+2
* | | | 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
* | | | Issue #18743: Fix references to non-existant "StringIO" moduleSerhiy Storchaka2013-08-291-0/+2
* | | | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-0/+3
* | | | #18833: add a test for test_telnetlib. Patch by Alex Volkov.Ezio Melotti2013-08-251-0/+1
* | | | Issue #18817: Fix a resource warning in Lib/aifc.py demo.Serhiy Storchaka2013-08-251-0/+2
* | | | #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
* | | | Issue #18747: Fix spelling errors in my commit message and comments,Christian Heimes2013-08-251-1/+1
* | | | Close #17702: On error, os.environb now removes suppress the except contextVictor Stinner2013-08-231-0/+3
* | | | NEW entry for issue #18755Brett Cannon2013-08-231-0/+3
* | | | Issue #16809: Fixed some tkinter incompabilities with Tcl/Tk 8.6.Serhiy Storchaka2013-08-221-0/+2
* | | | Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_ObjSerhiy Storchaka2013-08-221-0/+3
* | | | Issue #18747: Update Misc/NEWS to reflect the latest changeset.Christian Heimes2013-08-221-1/+1
* | | | #18324: set_payload now correctly handles binary input.R David Murray2013-08-221-0/+3
* | | | Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as poss...Antoine Pitrou2013-08-211-0/+4
* | | | Issue #17119: Fixed integer overflows when processing large strings and tuplesSerhiy Storchaka2013-08-211-0/+3
* | | | Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork.Christian Heimes2013-08-211-0/+4
* | | | Issue #8865: Concurrent invocation of select.poll.poll() now raises aSerhiy Storchaka2013-08-202-0/+4
* | | | Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms.Serhiy Storchaka2013-08-201-0/+3
* | | | Issue #18777: The ssl module now uses the new CRYPTO_THREADID API ofChristian Heimes2013-08-191-0/+3
* | | | add missing #Christian Heimes2013-08-181-1/+1
* | | | Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok.Christian Heimes2013-08-171-0/+2
* | | | #18466: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-1/+1
* | | | Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke ma...Christian Heimes2013-08-171-0/+3
* | | | mergeChristian Heimes2013-08-161-0/+7
|\ \ \ \
| * | | | Issue #18756: Improve error reporting in os.urandom() when the failure is due...Antoine Pitrou2013-08-161-0/+4
| * | | | Issue #1666318: Add a test that shutil.copytree() retains directory permissions.Antoine Pitrou2013-08-161-0/+3
* | | | | Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytesChristian Heimes2013-08-161-0/+6
|/ / / /
* | | | issue #18698: ensure importlib.reload() returns the module out of sys.modules.Eric Snow2013-08-151-0/+2
* | | | Issue #18405: Improve the entropy of crypt.mksalt().Victor Stinner2013-08-131-0/+2
* | | | Issue #17701: Improving strftime documentation.David Wolever2013-08-121-0/+2