summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | | | parsing. Added more tests for regrtest's argument parsing.
* Issue #18743: Fix references to non-existant "StringIO" moduleSerhiy Storchaka2013-08-291-0/+2
|\ | | | | | | in docstrings and comments.
| * Issue #18743: Fix references to non-existant "StringIO" moduleSerhiy Storchaka2013-08-291-0/+2
| | | | | | | | in docstrings and comments.
* | 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
| | | | | | | | | | are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable().
* | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-0/+6
|\ \ | |/ | | | | error messages and comments.
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-0/+3
| | | | | | | | error messages and comments.
* | Close #11619: The parser and the import machinery do not encode UnicodeVictor Stinner2013-08-261-0/+3
| | | | | | | | filenames anymore on Windows.
* | #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 ↵Antoine Pitrou2013-08-251-0/+3
| | | | | | | | sub-interpreter is shutdown (it would previously dump a fatal error).
* | Issue #18817: Fix a resource warning in Lib/aifc.py demo. Patch bySerhiy Storchaka2013-08-251-0/+3
|\ \ | |/ | | | | Vajrasky Kok.
| * 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
| | | | | | | | | | | | | | | | | | | | | | | | | | Previously it generated them if they were given a value, but completely ignored them if they were present in the string passed in to be parsed. Now if the flag appears on a cookie, the corresponding Morsel key will reference a True value. Other pre-existing behavior is retained in this maintenance patch: if the source contains something like 'secure=foo', morsel['secure'] will return 'foo'. Since such a value doesn't round trip and never did (and would be a surprising occurrence) a subsequent non-bug-fix patch may change this behavior. Inspired by a patch from Julien Phalip, who reviewed this one.
* | Issue #11973: Fix a problem in kevent. The flags and fflags fields are nowChristian Heimes2013-08-251-0/+3
|\ \ | |/ | | | | properly handled as unsigned.
| * Issue #11973: Fix a problem in kevent. The flags and fflags fields are nowChristian Heimes2013-08-251-0/+3
| | | | | | | | properly handled as unsigned.
* | Issue #18747: Fix spelling errors in my commit message and comments,Christian Heimes2013-08-251-1/+1
|\ \ | |/ | | | | thanks to Vajrasky Kok for proof-reading.
| * Issue #18747: Fix spelling errors in my commit message and comments,Christian Heimes2013-08-251-1/+1
| | | | | | | | thanks to Vajrasky Kok for proof-reading.
* | Closes #18807: pyvenv now takes a --copies argument allowing copies instead ↵Vinay Sajip2013-08-241-0/+3
| | | | | | | | of symlinks even where symlinks are available and the default.
* | Close #18538: ``python -m dis`` now uses argparse.Nick Coghlan2013-08-241-0/+3
| | | | | | | | Patch by Michele Orrù.
* | remove support for compiling on systems without getcwd()Benjamin Peterson2013-08-241-0/+2
| | | | | | | | | | Do we need a fallback implementation of getcwd() from 1991 that claims to support "really old Unix systems"? I don't think so.
* | Issue #18394: Explicitly close the file object cgi.FieldStorageBrett Cannon2013-08-231-0/+2
| | | | | | | | | | | | | | | | caches. Eliminates the ResoureWarning raised during testing. Patch also independently written by Vajrasky Kok.
* | (Merge 3.3) Close #17702: On error, os.environb now removes suppress the exceptVictor Stinner2013-08-231-0/+3
|\ \ | |/ | | | | context when raising a new KeyError with the original key.
| * Close #17702: On error, os.environb now removes suppress the except contextVictor Stinner2013-08-231-0/+3
| | | | | | | | when raising a new KeyError with the original key.
| * 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: 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
|\ \ | |/ | | | | | | | | argument. This is needed for support Tcl/Tk 8.6.
| * Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_ObjSerhiy Storchaka2013-08-221-0/+3
| | | | | | | | | | | | argument. This is needed for support Tcl/Tk 8.6.
* | Issue #18747: Update Misc/NEWS to reflect the latest changeset.Christian Heimes2013-08-221-1/+1
|\ \ | |/
| * Issue #18747: Update Misc/NEWS to reflect the latest changeset.Christian Heimes2013-08-221-1/+1
| |
* | Merge #18324: set_payload now correctly handles binary input.R David Murray2013-08-221-0/+3
|\ \ | |/
| * #18324: set_payload now correctly handles binary input.R David Murray2013-08-221-0/+3
| | | | | | | | | | | | | | | | | | | | | | This also backs out the previous fixes for for #14360, #1717, and #16564. Those bugs were actually caused by the fact that set_payload didn't decode to str, thus rendering the model inconsistent. This fix does mean the data processed by the encoder functions goes through an extra encode/decode cycle, but it means the model is always consistent. Future API updates will provide a better way to encode payloads, which will bypass this minor de-optimization. Tests by Vajrasky Kok.
| * Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as ↵Antoine Pitrou2013-08-211-0/+4
| | | | | | | | possible, since "localhost" goes through a DNS lookup under recent Windows versions.
* | Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as ↵Antoine Pitrou2013-08-211-0/+7
| | | | | | | | possible, since "localhost" goes through a DNS lookup under recent Windows versions.
* | Close #18794: Add a fileno() method and a closed attribute to select.devpollVictor Stinner2013-08-211-0/+3
| | | | | | | | | | | | objects. Add also tests on fileno() method and closed attribute of select.epoll and select.kqueue.
* | Issue #17119: Fixed integer overflows when processing large strings and tuplesSerhiy Storchaka2013-08-211-0/+3
|\ \ | |/ | | | | in the tkinter module.
| * Issue #17119: Fixed integer overflows when processing large strings and tuplesSerhiy Storchaka2013-08-211-0/+3
| | | | | | | | in the tkinter module.
* | Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork.Christian Heimes2013-08-211-0/+4
|\ \ | |/ | | | | | | A pthread_atfork() child handler is used to seeded the PRNG with pid, time and some stack data.
| * Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork.Christian Heimes2013-08-211-0/+4
| | | | | | | | | | A pthread_atfork() child handler is used to seeded the PRNG with pid, time and some stack data.
* | Issue #8865: Concurrent invocation of select.poll.poll() now raises aSerhiy Storchaka2013-08-202-0/+4
|\ \ | |/ | | | | RuntimeError exception. Patch by Christian Schubert.
| * Issue #8865: Concurrent invocation of select.poll.poll() now raises aSerhiy Storchaka2013-08-202-0/+4
| | | | | | | | RuntimeError exception. Patch by Christian Schubert.
* | Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms.Serhiy Storchaka2013-08-201-0/+3
|\ \ | |/ | | | | Patch by Yogesh Chaudhari.
| * Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms.Serhiy Storchaka2013-08-201-0/+3
| | | | | | | | Patch by Yogesh Chaudhari.
* | Issue 18774: Update news and whatsnew for the set optimizationsRaymond Hettinger2013-08-191-0/+4
| |
* | Issue #18777: The ssl module now uses the new CRYPTO_THREADID API ofChristian Heimes2013-08-191-0/+3
|\ \ | |/ | | | | OpenSSL 1.0.0+ instead of the deprecated CRYPTO id callback function.
| * Issue #18777: The ssl module now uses the new CRYPTO_THREADID API ofChristian Heimes2013-08-191-0/+3
| | | | | | | | OpenSSL 1.0.0+ instead of the deprecated CRYPTO id callback function.
* | Issue #18774: Remove last bits of GNU PTH thread code, patch by Vajrasky Kok.Christian Heimes2013-08-181-0/+2
| |