Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #12037: Fix test_email for desktop Windows. | Terry Jan Reedy | 2013-08-31 | 1 | -0/+2 |
| | |||||
* | Issue #18489: Add complete, gui-free tests for idlelib.SearchEngine. | Terry Jan Reedy | 2013-08-31 | 1 | -0/+2 |
| | | | | | | Patch import and initialization in SearchEngine to make testing easier. Improve docstrings, especially to clarify the double role of 'ok' parameters. Original patch by Phil Webster. | ||||
* | Issue #18418: After fork(), reinit all threads states, not only active ones. | Charles-François Natali | 2013-08-30 | 2 | -0/+4 |
| | | | | Patch by A. Jesse Jiryu Davis. | ||||
* | Fixes issue #15507: test_subprocess's test_send_signal could fail if the test | Gregory P. Smith | 2013-08-29 | 1 | -0/+5 |
| | | | | | | runner were run in an environment where the process inherited an ignore setting for SIGINT. Restore the SIGINT handler to the desired KeyboardInterrupt raising one during that test. | ||||
* | Issue #18743: Fix references to non-existant "StringIO" module | Serhiy Storchaka | 2013-08-29 | 1 | -0/+2 |
| | | | | in docstrings 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. | ||||
* | #18833: add a test for test_telnetlib. Patch by Alex Volkov. | Ezio Melotti | 2013-08-25 | 1 | -0/+1 |
| | |||||
* | Issue #18817: Fix a resource warning in Lib/aifc.py demo. | Serhiy Storchaka | 2013-08-25 | 1 | -0/+2 |
| | |||||
* | #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 #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. | ||||
* | 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: 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 |
| | |||||
* | #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 #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 #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 #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. | ||||
* | add missing # | Christian Heimes | 2013-08-18 | 1 | -1/+1 |
| | |||||
* | Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok. | Christian Heimes | 2013-08-17 | 1 | -0/+2 |
| | |||||
* | #18466: fix more typos. Patch by Févry Thibault. | Ezio Melotti | 2013-08-17 | 1 | -1/+1 |
| | |||||
* | Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke ↵ | Christian Heimes | 2013-08-17 | 1 | -0/+3 |
| | | | | malloc weak symbols. | ||||
* | merge | Christian Heimes | 2013-08-16 | 1 | -0/+7 |
|\ | |||||
| * | Issue #18756: Improve error reporting in os.urandom() when the failure is ↵ | Antoine Pitrou | 2013-08-16 | 1 | -0/+4 |
| | | | | | | | | due to something else than /dev/urandom not existing. | ||||
| * | Issue #1666318: Add a test that shutil.copytree() retains directory permissions. | Antoine Pitrou | 2013-08-16 | 1 | -0/+3 |
| | | | | | | | | Patch by Catherine Devlin. | ||||
* | | Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytes | Christian Heimes | 2013-08-16 | 1 | -0/+6 |
|/ | | | | | | | inside subjectAltName correctly. Formerly the module has used OpenSSL's GENERAL_NAME_print() function to get the string represention of ASN.1 strings for rfc822Name (email), dNSName (DNS) and uniformResourceIdentifier (URI). | ||||
* | issue #18698: ensure importlib.reload() returns the module out of sys.modules. | Eric Snow | 2013-08-15 | 1 | -0/+2 |
| | |||||
* | Issue #18405: Improve the entropy of crypt.mksalt(). | Victor Stinner | 2013-08-13 | 1 | -0/+2 |
| | |||||
* | Issue #17701: Improving strftime documentation. | David Wolever | 2013-08-12 | 1 | -0/+2 |
| | |||||
* | Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions. | Larry Hastings | 2013-08-12 | 1 | -0/+2 |
| | |||||
* | Issue #18676: Change 'positive' to 'non-negative' in queue.py put and get | Terry Jan Reedy | 2013-08-10 | 2 | -0/+4 |
| | | | | docstrings and ValueError messages. Patch by Zhongyue Luo | ||||
* | Issue #18429: Add user-oriented News entry about Format / Format Paragraph | Terry Jan Reedy | 2013-08-10 | 1 | -0/+4 |
| | | | | now working with comment block selections. Patch was part of 18226 patch. | ||||
* | Issue #18226: Add docstrings and unittests for idlelib/FormatParagraph.py. | Terry Jan Reedy | 2013-08-10 | 1 | -0/+3 |
| | | | | | Move comment code to a separate function so it can be separately tested. Original patches by Todd Rovito and Phil Webster. | ||||
* | #18681: Fix a NameError in imp.reload() (noticed by Weizhao Li). | Ezio Melotti | 2013-08-10 | 1 | -0/+2 |
| | |||||
* | #8112: Update the documenting xmlrpc server to use getfullargspec. | R David Murray | 2013-08-10 | 1 | -0/+3 |
| | | | | | | | Before this patch it would raise an error when trying to display documentation for a method that used annotations. Patch by Claudiu Popa. | ||||
* | #18357: add tests for dictview set difference. Patch by Fraser Tweedale. | Ezio Melotti | 2013-08-08 | 2 | -0/+4 |
| | |||||
* | #18273: move the tests in Lib/test/json_tests to Lib/test/test_json and make ↵ | Ezio Melotti | 2013-08-08 | 1 | -0/+3 |
| | | | | them discoverable by unittest. Patch by Zachary Ware. | ||||
* | Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails. | Christian Heimes | 2013-08-06 | 1 | -0/+3 |
| | |||||
* | #18657: remove duplicate entries from Misc/ACKS. | R David Murray | 2013-08-04 | 1 | -3/+0 |
| | | | | Patch by Madison May. | ||||
* | Merge heads | Serhiy Storchaka | 2013-08-03 | 1 | -0/+2 |
|\ | |||||
| * | Issue #16067: Add description into MSI file to replace installer's temporary ↵ | Martin v. Löwis | 2013-08-03 | 1 | -0/+2 |
| | | | | | | | | name. | ||||
* | | Issue #16741: Fix an error reporting in int(). | Serhiy Storchaka | 2013-08-03 | 1 | -0/+2 |
|/ | |||||
* | Issue #17998: Fix an internal error in regular expression engine. | Serhiy Storchaka | 2013-08-03 | 1 | -0/+2 |
| | |||||
* | - Fix a fcntl test case on KFreeBSD, Debian #708653 (Petr Salinger). | doko@ubuntu.com | 2013-08-03 | 1 | -0/+2 |
| | |||||
* | Close #18396: fix spurious test_signal failure on Windows | Nick Coghlan | 2013-08-03 | 1 | -0/+3 |
| | | | | | signal.getsignal returns None for some signals if faulthandler is enabled (Patch by Jeremy Kloth) |