Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - Issue #21223: Pass test_site/test_startup_imports when some of the extensions | doko@ubuntu.com | 2014-04-15 | 2 | -1/+5 |
| | | | | are built as builtins. | ||||
* | asyncio.tasks: Make sure CoroWrapper.send proxies one argument correctly | Yury Selivanov | 2014-04-15 | 2 | -0/+20 |
| | | | | Issue #21209. | ||||
* | Reverted 16efa8d27e4c after discussion with Eric. | Vinay Sajip | 2014-04-15 | 3 | -13/+0 |
| | |||||
* | Issue #21197: Add lib64 -> lib symlink in venvs on 64-bit non-OS X POSIX. | Vinay Sajip | 2014-04-15 | 3 | -2/+22 |
| | |||||
* | Closed issue #8931: Make alternate formatting for 'c' raise an exception. ↵ | Eric V. Smith | 2014-04-15 | 3 | -0/+13 |
| | | | | Patch by Torsten Landschoff. | ||||
* | misc.news: Remove whitespace | Yury Selivanov | 2014-04-14 | 1 | -1/+1 |
| | |||||
* | asyncio.tasks: Fix CoroWrapper to workaround yield-from bug in CPython < 3.4.1 | Yury Selivanov | 2014-04-14 | 3 | -1/+32 |
| | | | | Closes issue #21209. | ||||
* | Invoke test_urllibnet tests using unittest.main function | Senthil Kumaran | 2014-04-14 | 1 | -7/+3 |
| | |||||
* | #15104: add backtick code markup. | R David Murray | 2014-04-14 | 1 | -7/+7 |
| | |||||
* | #17498: Defer SMTPServerDisconnected errors until the next command. | R David Murray | 2014-04-14 | 3 | -3/+33 |
| | | | | | | | | | | | | | Normally an SMTP server will return an error, and smtplib will then issue an RSET to return the connection to the known starting state. Some servers, however, disconnect after issuing certain errors. When we issue the RSET, this would result in raising an SMTPServerDisconnected error, *instead* of returning the error code the user of the library was expecting. This fix makes the internal RSET calls ignore the disconnection so that the error code is returned. The user of the library will then get the SMTPServerDisconnected error the next time they try to talk to the server. Patch by Kushal Das. | ||||
* | merge heads | Senthil Kumaran | 2014-04-14 | 1 | -1/+1 |
|\ | |||||
| * | Issue #13598: Added acknowledgements to Misc/NEWS. | Eric V. Smith | 2014-04-14 | 1 | -1/+1 |
| | | |||||
* | | merge heads | Senthil Kumaran | 2014-04-14 | 3 | -2/+42 |
|\ \ | |/ | |||||
| * | Issue #13598: Add auto-numbering of replacement fields to string.Formatter. | Eric V. Smith | 2014-04-14 | 3 | -2/+42 |
| | | |||||
* | | merge heads | Senthil Kumaran | 2014-04-14 | 1 | -0/+6 |
|\ \ | |/ | |||||
| * | Add conditional code for android's lack of definition of SYS_getdent64. | Gregory P. Smith | 2014-04-14 | 1 | -0/+6 |
| | | | | | | | | | | | | Fixes issue20307. No Misc/NEWS entry because frankly this is an esoteric platform for anyone to be figuring out how to cross compile CPython for. | ||||
* | | Convert urllib.request parse_proxy doctests to unittests. | Senthil Kumaran | 2014-04-14 | 2 | -45/+39 |
|/ | |||||
* | Issue 17826. Setting an iterable side_effect on a mock created by ↵ | Michael Foord | 2014-04-14 | 3 | -2/+34 |
| | | | | create_autospec now works | ||||
* | #15104: improve the discussion of __main__. | R David Murray | 2014-04-14 | 1 | -5/+11 |
| | | | | Patch by Sam Lucidi. | ||||
* | Fix the NEWS Entry item. (Thanks Stéphane Wirtel) | Senthil Kumaran | 2014-04-14 | 1 | -1/+1 |
| | |||||
* | #18518: mention that including a return statement changes/breaks the behaviour | Andrew Kuchling | 2014-04-14 | 1 | -0/+6 |
| | |||||
* | do not generate pipe names in the temporary dir | Benjamin Peterson | 2014-04-14 | 1 | -1/+1 |
| | |||||
* | Issue #7776: Fix ``Host:'' header and reconnection when using ↵ | Senthil Kumaran | 2014-04-14 | 3 | -26/+100 |
| | | | | | | http.client.HTTPConnection.set_tunnel(). Patch by Nikolaus Rath. | ||||
* | merge 3.3 | Benjamin Peterson | 2014-04-14 | 0 | -0/+0 |
|\ | |||||
| * | merge 3.2 | Benjamin Peterson | 2014-04-14 | 0 | -0/+0 |
| |\ | |||||
| | * | fix poor spelling | Benjamin Peterson | 2014-04-14 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #12546: Allow \x00 as a fill character for builtin type __format__ ↵ | Eric V. Smith | 2014-04-14 | 3 | -11/+32 |
| | | | | | | | | | | | | methods. | ||||
* | | | merge 3.3 | Benjamin Peterson | 2014-04-14 | 1 | -4/+5 |
|\ \ \ | |/ / | |||||
| * | | merge 3.2 | Benjamin Peterson | 2014-04-14 | 1 | -4/+5 |
| |\ \ | | |/ | |||||
| | * | disallow a negative idx parameter | Benjamin Peterson | 2014-04-14 | 1 | -4/+5 |
| | | | |||||
* | | | Merge | Michael Foord | 2014-04-14 | 3 | -1/+31 |
|\ \ \ | |||||
| * | | | Issue 20968. unittest.mock.MagicMock now supports division | Michael Foord | 2014-04-14 | 3 | -1/+31 |
| | | | | |||||
* | | | | Issue #20624: Exception docs wording tweak - clarify that it's okay to ↵ | Mark Dickinson | 2014-04-14 | 1 | -4/+4 |
|/ / / | | | | | | | | | | inherit from a subclass of Exception. | ||||
* | | | #21169: add comment and doc update for getpass change. | R David Murray | 2014-04-14 | 2 | -4/+6 |
| | | | |||||
* | | | Fix faq example with division. | Eric V. Smith | 2014-04-14 | 1 | -1/+1 |
| | | | |||||
* | | | Fix text about int() with octal numbers. Closes #21212. | Eric V. Smith | 2014-04-14 | 1 | -1/+1 |
| | | | |||||
* | | | fix sending tuples to custom generator objects with yield from (closes #21209) | Benjamin Peterson | 2014-04-13 | 3 | -1/+23 |
| | | | | | | | | | | | | Debugged by Victor. | ||||
* | | | merge 3.3 | Benjamin Peterson | 2014-04-13 | 4 | -1/+12 |
|\ \ \ | |/ / | |||||
| * | | merge 3.2 | Benjamin Peterson | 2014-04-13 | 4 | -1/+12 |
| |\ \ | | |/ | |||||
| | * | in scan_once, prevent the reading of arbitrary memory when passed a negative ↵ | Benjamin Peterson | 2014-04-13 | 4 | -1/+12 |
| | | | | | | | | | | | | | | | | | | index Bug reported by Guido Vranken. | ||||
* | | | #21169: fix getpass to use replace error handler on UnicodeEncodeError. | R David Murray | 2014-04-13 | 3 | -2/+19 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | If the input stream encoding couldn't encode one or more of the non-ascii characters in the prompt, it would fail, throwing a UnicodeEncodeError. Now if that happens we re-encoding using the 'replace' error handler. Patch by Kushal Das. | ||||
* | | | Issue #20635: Added tests for Tk geometry managers. | Serhiy Storchaka | 2014-04-13 | 3 | -0/+915 |
| | | | |||||
* | | | Issue #21171: Fixed undocumented filter API of the rot13 codec. | Serhiy Storchaka | 2014-04-13 | 2 | -1/+4 |
| | | | | | | | | | | | | Patch by Berker Peksag. | ||||
* | | | Remove references to the obsolete Mac Carbon modules in the GUI | Ned Deily | 2014-04-12 | 1 | -8/+4 |
| | | | | | | | | | | | | section of the FAQ. | ||||
* | | | Issue #21170: Removed invalid parameter names from unittest doc. | Terry Jan Reedy | 2014-04-11 | 1 | -2/+2 |
| | | | | | | | | | | | | Patch by Kushal Das. | ||||
* | | | Issue #21172: isinstance check relaxed from dict to collections.Mapping. | Vinay Sajip | 2014-04-10 | 2 | -2/+11 |
| | | | |||||
* | | | teach 2to3 about 'yield from' | Benjamin Peterson | 2014-04-10 | 3 | -1/+11 |
| | | | |||||
* | | | add matrix multiplication operator support to 2to3 | Benjamin Peterson | 2014-04-10 | 6 | -9/+19 |
| | | | |||||
* | | | Issue #21187: Fix OS X installer fail-to-build with Xcode 5.1. | Ned Deily | 2014-04-09 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #20644: Keep build-installer.py in sync across active versions. | Ned Deily | 2014-04-09 | 1 | -9/+18 |
| | | |