Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merged upstream changes. | Vinay Sajip | 2013-07-12 | 4 | -3/+73 |
|\ | |||||
| * | Merge heads. | R David Murray | 2013-07-12 | 4 | -3/+73 |
| |\ | |||||
| | * | #18431: Decode encoded words in atoms in new email parser. | R David Murray | 2013-07-12 | 4 | -3/+73 |
| | | | | | | | | | | | | | | | | | | There is more to be done here in terms of accepting RFC invalid input that some mailers accept, but this covers the valid RFC places where encoded words can occur in structured headers. | ||||
* | | | Issue #18435: Replaced simple attribute container class Context with ↵ | Vinay Sajip | 2013-07-12 | 1 | -7/+2 |
|/ / | | | | | | | types.SimpleNamespace. | ||||
* | | Issue #18434: Updated example script in venv docs to use setuptools rather ↵ | Vinay Sajip | 2013-07-12 | 1 | -21/+28 |
|/ | | | | than Distribute. | ||||
* | #18044: Fix parsing of encoded words of the form =?utf8?q?=XX...?= | R David Murray | 2013-07-11 | 5 | -40/+62 |
| | | | | | | | | | | The problem was I was only checking for decimal digits after the third '?', not for *hex* digits :(. This changeset also fixes a couple of comment typos, deletes an unused function relating to encoded word parsing, and removed an invalid 'if' test from the folding function that was revealed by the tests written to validate this issue. | ||||
* | Issue #17872: Fix a segfault in marshal.load() when input stream returns | Serhiy Storchaka | 2013-07-11 | 3 | -15/+35 |
| | | | | more bytes than requested. | ||||
* | Issue #18085: Add missed const modifier for some entries in refcounts.dat. | Serhiy Storchaka | 2013-07-11 | 1 | -77/+77 |
| | |||||
* | Issue #18101: Tcl.split() now process strings nested in a tuple as it | Serhiy Storchaka | 2013-07-11 | 3 | -0/+78 |
| | | | | | | do with byte strings. Added tests for Tcl.split() and Tcl.splitline(). | ||||
* | #17987: properly document support.captured_xxx. | R David Murray | 2013-07-11 | 4 | -16/+47 |
| | | | | Patch by Dmi Baranov. | ||||
* | Fix reference leaks introduced by the patch for issue #5308. | Serhiy Storchaka | 2013-07-11 | 1 | -12/+11 |
| | |||||
* | Issue #18336. Fix a link to StreamReader's read() method. | Serhiy Storchaka | 2013-07-11 | 1 | -1/+1 |
| | |||||
* | Issue #18426: improve exception message. Courtesy of Amaury | Christian Heimes | 2013-07-11 | 1 | -1/+5 |
| | |||||
* | Issue #18426: Fix NULL pointer dereference in C extension import when | Christian Heimes | 2013-07-11 | 2 | -0/+5 |
| | | | | PyModule_GetDef() returns an error. | ||||
* | #18424: PEP8ify the tense of the sum docstring. | R David Murray | 2013-07-10 | 1 | -2/+2 |
| | |||||
* | #18399: fix comment typo. | R David Murray | 2013-07-10 | 1 | -1/+1 |
| | | | | Patch by Andrew Rowe. | ||||
* | Issue #18308: don't take the scope ID into account when comparing IPv6 | Charles-François Natali | 2013-07-09 | 1 | -1/+5 |
| | | | | addresses. | ||||
* | use $(LN) makefile variable instead of ln | Christian Heimes | 2013-07-09 | 1 | -6/+6 |
| | |||||
* | #18403: fix an off-by-one typo noticed by Xue Fuqiao. | Ezio Melotti | 2013-07-08 | 1 | -1/+1 |
| | |||||
* | Add a couple of tests for str.center with non-ASCII chars. | Ezio Melotti | 2013-07-08 | 1 | -0/+9 |
| | |||||
* | #17198: Fix a NameError in the dbm module. Patch by Valentina Mukhamedzhanova. | Ezio Melotti | 2013-07-07 | 3 | -2/+24 |
| | |||||
* | Issue #18013: Fix cgi.FieldStorage to parse the W3C sample form. | Florent Xicluna | 2013-07-07 | 3 | -1/+49 |
| | |||||
* | Issue #18377: Code cleanup in Python Launcher | Ronald Oussoren | 2013-07-07 | 8 | -95/+77 |
| | | | | | This changeset fixes a number of compiler warnings in the Python Launcher binary for OSX. It also cleans up whitespace usage in those sources. | ||||
* | Cleanup of documentation change from #17860 | Ronald Oussoren | 2013-07-07 | 2 | -4/+10 |
| | | | | Reformulated the textual change, and applied it to the docstring as well. | ||||
* | Issue #18351: Fix various issues with | Brett Cannon | 2013-07-06 | 5 | -3376/+3415 |
| | | | | | | | | | importlib._bootstrap._get_sourcefile(). Thanks to its only use by the C API, it was never properly tested until now. Thanks to Neal Norwitz for discovering the bug and Madison May for the patch. | ||||
* | #18380: pass regex flags to the right argument. Patch by Valentina ↵ | Ezio Melotti | 2013-07-06 | 3 | -1/+6 |
| | | | | Mukhamedzhanova. | ||||
* | test_ftplib: silence a BytesWarning when checking TypeError | Florent Xicluna | 2013-07-06 | 1 | -1/+2 |
| | |||||
* | Issue #12990: The "Python Launcher" on OSX could not launch python scripts ↵ | Ronald Oussoren | 2013-07-06 | 2 | -1/+4 |
| | | | | that have paths that include wide characters. | ||||
* | Issue #18375: Assume --randomize when --randseed is used for running the ↵ | Florent Xicluna | 2013-07-06 | 2 | -0/+4 |
| | | | | testsuite. | ||||
* | Issue #17860: explicitly mention that std* streams are opened in binary mode ↵ | Ronald Oussoren | 2013-07-06 | 1 | -2/+4 |
| | | | | | | | | | by default. The documentation does mention that the streams are opened in text mode when univeral_newlines is true, but not that that they are opened in binary mode when that argument is false and that seems to confuse at least some users. | ||||
* | Issue #18347: ElementTree's html serializer now preserves the case of ↵ | Christian Heimes | 2013-07-04 | 3 | -3/+13 |
| | | | | closing tags. | ||||
* | Issue #11185: Fix test_wait4 under AIX. Patch by Sébastien Sablé. | Antoine Pitrou | 2013-07-04 | 2 | -1/+9 |
| | |||||
* | test_time.test_monotonic(): use a longer sleep to try to make the test more ↵ | Victor Stinner | 2013-07-03 | 1 | -2/+2 |
| | | | | reliable | ||||
* | test_faulthandler: skip test_read_null() on AIX | Victor Stinner | 2013-07-03 | 1 | -0/+2 |
| | | | | | | | AIX maps the first page of memory at address zero as valid, read-only. Reading NULL is not a fault on AIX. This is utilized by IBM compiler optimizations. One speculatively can indirect through a pointer which may be null without first testing if null and defer the test before using the value. | ||||
* | Closes #18312: 'make distclean' no longer deletes files in dot-directories. | Eric V. Smith | 2013-07-02 | 1 | -5/+5 |
| | |||||
* | Issue #17261: Ensure multiprocessing's proxies use proper address. | Richard Oudkerk | 2013-07-02 | 2 | -0/+3 |
| | |||||
* | Issue #14206: Clarify docs for Queue.join_cancel_thread(). | Richard Oudkerk | 2013-07-02 | 1 | -0/+7 |
| | |||||
* | Issue #17273: Clarify that pool methods can only be used by parent process. | Richard Oudkerk | 2013-07-02 | 1 | -0/+6 |
| | |||||
* | Issue #18343: faulthandler.register() now keeps the previous signal handler | Victor Stinner | 2013-07-01 | 2 | -1/+6 |
| | | | | | when the function is called twice, so faulthandler.unregister() restores correctly the original signal handler. | ||||
* | Issue #18328: Reorder ops in PyThreadState_Delete*() functions. Now the | Christian Heimes | 2013-07-01 | 2 | -2/+5 |
| | | | | | | tstate is first removed from TLS and then deallocated. CID 1019639 (#1 of 1): Use after free (USE_AFTER_FREE) use_after_free: Using freed pointer tstate. | ||||
* | Issue #18339: use with self.assertRaises() to make test case more readable | Christian Heimes | 2013-07-01 | 1 | -2/+4 |
| | |||||
* | Issue #17097: Make multiprocessing ignore EINTR. | Richard Oudkerk | 2013-07-01 | 3 | -4/+86 |
| | |||||
* | Singular form just like the other error message. | Christian Heimes | 2013-07-01 | 1 | -1/+1 |
| | |||||
* | Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a | Christian Heimes | 2013-07-01 | 3 | -0/+15 |
| | | | | segfault inside the _pickle C extension. | ||||
* | Issue #7136: In the Idle File menu, "New Window" is renamed "New File". | Terry Jan Reedy | 2013-07-01 | 4 | -4/+7 |
| | | | | Patch by Tal Einat, Roget Serwy, and Todd Rovito. | ||||
* | Issue #18189: add test_delegator for Idle Delegator class. | Terry Jan Reedy | 2013-06-30 | 2 | -2/+39 |
| | | | | Also change private dict used as a set to a set. | ||||
* | Issue #18224: Updated test. | Vinay Sajip | 2013-06-30 | 1 | -4/+0 |
| | |||||
* | Issue #18224: Removed pydoc script from created venv, as it causes problems ↵ | Vinay Sajip | 2013-06-30 | 3 | -9/+3 |
| | | | | on Windows and adds no value over and above python -m pydoc ... | ||||
* | Issue 18189: remove unused methods in idlelib.Delegator.Delegator. | Terry Jan Reedy | 2013-06-30 | 1 | -8/+0 |
| | | | | | Idle code already uses x.delegate instead of x.getdelegate(). The printed report must have been for testing. | ||||
* | #18038: Use non-deprecated assert names in tests. | R David Murray | 2013-06-30 | 1 | -5/+5 |
| |