Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #17974: Switch unittest from using getopt to using argparse. | Serhiy Storchaka | 2013-08-29 | 1 | -0/+2 |
| | |||||
* | Issue #16799: Switched from getopt to argparse style in regrtest's argument | Serhiy Storchaka | 2013-08-29 | 1 | -0/+3 |
| | | | | parsing. Added more tests for regrtest's argument parsing. | ||||
* | Issue #18743: Fix references to non-existant "StringIO" module | Serhiy Storchaka | 2013-08-29 | 1 | -0/+2 |
|\ | | | | | | | in docstrings and comments. | ||||
| * | Issue #18743: Fix references to non-existant "StringIO" module | Serhiy Storchaka | 2013-08-29 | 1 | -0/+2 |
| | | | | | | | | in docstrings and comments. | ||||
* | | Issue #11798: TestSuite now drops references to own tests after execution. | Andrew Svetlov | 2013-08-28 | 2 | -0/+4 |
| | | |||||
* | | Issue #18571: Implementation of the PEP 446: file descriptors and file handles | Victor Stinner | 2013-08-27 | 1 | -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 Storchaka | 2013-08-27 | 1 | -0/+6 |
|\ \ | |/ | | | | | error messages and comments. | ||||
| * | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -0/+3 |
| | | | | | | | | error messages and comments. | ||||
* | | Close #11619: The parser and the import machinery do not encode Unicode | Victor Stinner | 2013-08-26 | 1 | -0/+3 |
| | | | | | | | | filenames anymore on Windows. | ||||
* | | #18833: merge with 3.3. | Ezio Melotti | 2013-08-25 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | #18833: add a test for test_telnetlib. Patch by Alex Volkov. | Ezio Melotti | 2013-08-25 | 1 | -0/+1 |
| | | |||||
* | | Issue #18808: Non-daemon threads are now automatically joined when a ↵ | Antoine Pitrou | 2013-08-25 | 1 | -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 by | Serhiy Storchaka | 2013-08-25 | 1 | -0/+3 |
|\ \ | |/ | | | | | Vajrasky Kok. | ||||
| * | Issue #18817: Fix a resource warning in Lib/aifc.py demo. | Serhiy Storchaka | 2013-08-25 | 1 | -0/+2 |
| | | |||||
* | | Merge #16611: BaseCookie now parses 'secure' and 'httponly' flags. | R David Murray | 2013-08-25 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | #16611: BaseCookie now parses 'secure' and 'httponly' flags. | R David Murray | 2013-08-25 | 1 | -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 now | Christian Heimes | 2013-08-25 | 1 | -0/+3 |
|\ \ | |/ | | | | | properly handled as unsigned. | ||||
| * | Issue #11973: Fix a problem in kevent. The flags and fflags fields are now | Christian Heimes | 2013-08-25 | 1 | -0/+3 |
| | | | | | | | | properly handled as unsigned. | ||||
* | | Issue #18747: Fix spelling errors in my commit message and comments, | Christian Heimes | 2013-08-25 | 1 | -1/+1 |
|\ \ | |/ | | | | | thanks to Vajrasky Kok for proof-reading. | ||||
| * | Issue #18747: Fix spelling errors in my commit message and comments, | Christian Heimes | 2013-08-25 | 1 | -1/+1 |
| | | | | | | | | thanks to Vajrasky Kok for proof-reading. | ||||
* | | Closes #18807: pyvenv now takes a --copies argument allowing copies instead ↵ | Vinay Sajip | 2013-08-24 | 1 | -0/+3 |
| | | | | | | | | of symlinks even where symlinks are available and the default. | ||||
* | | Close #18538: ``python -m dis`` now uses argparse. | Nick Coghlan | 2013-08-24 | 1 | -0/+3 |
| | | | | | | | | Patch by Michele Orrù. | ||||
* | | remove support for compiling on systems without getcwd() | Benjamin Peterson | 2013-08-24 | 1 | -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.FieldStorage | Brett Cannon | 2013-08-23 | 1 | -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 except | Victor Stinner | 2013-08-23 | 1 | -0/+3 |
|\ \ | |/ | | | | | context when raising a new KeyError with the original key. | ||||
| * | Close #17702: On error, os.environb now removes suppress the except context | Victor Stinner | 2013-08-23 | 1 | -0/+3 |
| | | | | | | | | when raising a new KeyError with the original key. | ||||
| * | NEW entry for issue #18755 | Brett Cannon | 2013-08-23 | 1 | -0/+3 |
| | | |||||
* | | Issue #16809: Fixed some tkinter incompabilities with Tcl/Tk 8.6. | Serhiy Storchaka | 2013-08-22 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #16809: Fixed some tkinter incompabilities with Tcl/Tk 8.6. | Serhiy Storchaka | 2013-08-22 | 1 | -0/+2 |
| | | |||||
* | | Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_Obj | Serhiy Storchaka | 2013-08-22 | 1 | -0/+3 |
|\ \ | |/ | | | | | | | | | argument. This is needed for support Tcl/Tk 8.6. | ||||
| * | Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_Obj | Serhiy Storchaka | 2013-08-22 | 1 | -0/+3 |
| | | | | | | | | | | | | argument. This is needed for support Tcl/Tk 8.6. | ||||
* | | Issue #18747: Update Misc/NEWS to reflect the latest changeset. | Christian Heimes | 2013-08-22 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #18747: Update Misc/NEWS to reflect the latest changeset. | Christian Heimes | 2013-08-22 | 1 | -1/+1 |
| | | |||||
* | | Merge #18324: set_payload now correctly handles binary input. | R David Murray | 2013-08-22 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | #18324: set_payload now correctly handles binary input. | R David Murray | 2013-08-22 | 1 | -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 Pitrou | 2013-08-21 | 1 | -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 Pitrou | 2013-08-21 | 1 | -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.devpoll | Victor Stinner | 2013-08-21 | 1 | -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 tuples | Serhiy Storchaka | 2013-08-21 | 1 | -0/+3 |
|\ \ | |/ | | | | | in the tkinter module. | ||||
| * | Issue #17119: Fixed integer overflows when processing large strings and tuples | Serhiy Storchaka | 2013-08-21 | 1 | -0/+3 |
| | | | | | | | | in the tkinter module. | ||||
* | | Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork. | Christian Heimes | 2013-08-21 | 1 | -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 Heimes | 2013-08-21 | 1 | -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 a | Serhiy Storchaka | 2013-08-20 | 2 | -0/+4 |
|\ \ | |/ | | | | | RuntimeError exception. Patch by Christian Schubert. | ||||
| * | Issue #8865: Concurrent invocation of select.poll.poll() now raises a | Serhiy Storchaka | 2013-08-20 | 2 | -0/+4 |
| | | | | | | | | RuntimeError exception. Patch by Christian Schubert. | ||||
* | | Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms. | Serhiy Storchaka | 2013-08-20 | 1 | -0/+3 |
|\ \ | |/ | | | | | Patch by Yogesh Chaudhari. | ||||
| * | Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms. | Serhiy Storchaka | 2013-08-20 | 1 | -0/+3 |
| | | | | | | | | Patch by Yogesh Chaudhari. | ||||
* | | Issue 18774: Update news and whatsnew for the set optimizations | Raymond Hettinger | 2013-08-19 | 1 | -0/+4 |
| | | |||||
* | | Issue #18777: The ssl module now uses the new CRYPTO_THREADID API of | Christian Heimes | 2013-08-19 | 1 | -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 of | Christian Heimes | 2013-08-19 | 1 | -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 Heimes | 2013-08-18 | 1 | -0/+2 |
| | |