| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | merge 3.4 | Senthil Kumaran | 2014-04-17 | 1 | -6/+6 |
| |\ | |||||
| | * | Clarify BROWSER envar behavior in webbrowser.py. Noted by David Turner. ↵ | Senthil Kumaran | 2014-04-17 | 1 | -6/+6 |
| | | | | | | | | | Closes #21248 | ||||
| * | | merge 3.4 | Senthil Kumaran | 2014-04-17 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | Correct the URL in the http.client example. Noted by Evens Fortuné. Closes ↵ | Senthil Kumaran | 2014-04-17 | 1 | -1/+1 |
| | | | | | | | | | #21229 | ||||
| * | | Merge: #18628: clarify index entry for source file encoding declaration. | R David Murray | 2014-04-17 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | #18628: clarify index entry for source file encoding declaration. | R David Murray | 2014-04-17 | 1 | -1/+1 |
| | | | | | | | | | Patch by Sam Lucidi. | ||||
| * | | Fix Tools/scripts/generate_opcode_h.py from issue #17861 to work correctly | Thomas Wouters | 2014-04-16 | 2 | -14/+13 |
| | | | | | | | | | | | when building in a separate object tree. More people should build this way. This may still fail if the source is unwritable, I haven't tested that yet. | ||||
| * | | Removes unused varargs and varkwargs from assert_not_called(). | Kushal Das | 2014-04-16 | 1 | -1/+1 |
| | | | |||||
| * | | merge 3.4 | Benjamin Peterson | 2014-04-16 | 1 | -1/+0 |
| |\ \ | |/ | |||||
| | * | remove superfluous and useless line | Benjamin Peterson | 2014-04-16 | 1 | -1/+0 |
| | | | |||||
| * | | merge 3.4 | Benjamin Peterson | 2014-04-16 | 1 | -8/+8 |
| |\ \ | |/ | |||||
| | * | use the called property of the run_pip mock rather than an assertion method ↵ | Benjamin Peterson | 2014-04-16 | 1 | -8/+8 |
| | | | | | | | | | that doesn't exist | ||||
| * | | Closes Issue 21262: New method assert_not_called for Mock. | Kushal Das | 2014-04-16 | 4 | -0/+34 |
| | | | | | | | | | It raises AssertionError if the mock has been called. | ||||
| * | | Closes Issue 21238: New keyword argument `unsafe` to Mock. | Kushal Das | 2014-04-16 | 4 | -3/+27 |
| | | | | | | | | | | | It raises `AttributeError` incase of an attribute startswith assert or assret. | ||||
| * | | merge 3.4 | Senthil Kumaran | 2014-04-16 | 1 | -1/+4 |
| |\ \ | |/ | |||||
| | * | Address issue 18229 - Explain http.server.BaseHTTPRequestHandler's .headers ↵ | Senthil Kumaran | 2014-04-16 | 1 | -1/+4 |
| | | | | | | | | | | | | | attribute further. Initial patch by Caelyn McAulay. | ||||
| * | | Issue #20896: ssl.get_server_certificate() now uses PROTOCOL_SSLv23, not ↵ | Antoine Pitrou | 2014-04-16 | 4 | -6/+10 |
| | | | | | | | | | PROTOCOL_SSLv3, for maximum compatibility. | ||||
| * | | Try to fix buildbot failures on old OpenSSLs (< 1.0.0) - followup to issue ↵ | Antoine Pitrou | 2014-04-16 | 1 | -1/+6 |
| |\ \ | |/ | | | | | #21015 | ||||
| | * | Try to fix buildbot failures on old OpenSSLs (< 1.0.0) - followup to issue ↵ | Antoine Pitrou | 2014-04-16 | 1 | -1/+6 |
| | | | | | | | | | #21015 | ||||
| * | | #6490: Expand documentation for os.popen(). | Andrew Kuchling | 2014-04-16 | 1 | -4/+21 |
| | | | | | | | | | Patch by Sam Kimbrel. | ||||
| * | | Merge with 3.4 | Terry Jan Reedy | 2014-04-16 | 1 | -5/+5 |
| |\ \ | |/ | |||||
| | * | #18566: Whitespace | Terry Jan Reedy | 2014-04-16 | 1 | -5/+5 |
| | | | |||||
| * | | Merge with 3.4 | Terry Jan Reedy | 2014-04-16 | 2 | -7/+8 |
| |\ \ | |/ | |||||
| | * | Issue #18566: Clarify unittest setUp, tearDown doc. Patch by Nitika Agarwal. | Terry Jan Reedy | 2014-04-16 | 2 | -7/+8 |
| | | | |||||
| * | | Close issue #8931: Make alternate formatting for 'c' raise an exception. ↵ | Eric V. Smith | 2014-04-16 | 3 | -0/+13 |
| | | | | | | | | | Patch by Torsten Landschoff. | ||||
| * | | #20103: Rewrite description of itertools.accumulate(). | Andrew Kuchling | 2014-04-16 | 1 | -4/+9 |
| | | | | | | | | | Patch by Christian Hudon. | ||||
| * | | Merge from 3.4 | Andrew Kuchling | 2014-04-16 | 2 | -2/+3 |
| |\ \ | |/ | |||||
| | * | #1704474: mark refleak test as specific to CPython | Andrew Kuchling | 2014-04-15 | 1 | -0/+1 |
| | | | | | | | | | Patch by Christian Hudon. | ||||
| | * | #15840: make docs consistent by saying operations on closed files raise ↵ | Andrew Kuchling | 2014-04-16 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | ValueError. Patch by Caelyn McAulay. Neither Caelyn nor I could find any cases in 2.7 or 3.4/5 where an operation on a closed stream raised IOError; generally the C implementations have a macro to check for the stream being closed, and these macros all raised ValueError. If we find any, a new bug should be opened. | ||||
| * | | Merge #20874 fix. | R David Murray | 2014-04-16 | 1 | -9/+8 |
| |\ \ | |/ | |||||
| | * | #20874: reflow paragraph. | R David Murray | 2014-04-16 | 1 | -7/+7 |
| | | | |||||
| | * | #20874: update tutorial wording: sophisticated line editing is now standard. | R David Murray | 2014-04-16 | 1 | -4/+3 |
| | | | | | | | | | Patch by Rafael Mejia. | ||||
| * | | Closes #21245: merged update from 3.4. | Vinay Sajip | 2014-04-15 | 1 | -2/+2 |
| |\ \ | |/ | |||||
| | * | Issue #21245: updated documentation on exception() method and function. | Vinay Sajip | 2014-04-15 | 1 | -2/+2 |
| | | | |||||
| * | | Merge | Michael Foord | 2014-04-15 | 3 | -7/+32 |
| |\ \ | |/ | |||||
| | * | Closes issue 21239. unittest.mock.patch.stopall() did not work ↵ | Michael Foord | 2014-04-15 | 3 | -6/+31 |
| | | | | | | | | | deterministically when the same name was patched multiple times. | ||||
| * | | Merge. | Stefan Krah | 2014-04-15 | 1 | -7/+17 |
| |\ \ | |||||
| | * \ | merge 3.4 | Senthil Kumaran | 2014-04-15 | 1 | -7/+17 |
| | |\ \ | | |/ | |||||
| | | * | Run test_urllib2_localnet tests using unittest.main(). | Senthil Kumaran | 2014-04-15 | 1 | -7/+17 |
| | | | | | | | | | | | | | Capture threads in the setUpModule and cleanup threads in the tearDownModule. | ||||
| * | | | Skip test_enums in the absence of threading. | Stefan Krah | 2014-04-15 | 1 | -0/+1 |
| |/ / | |||||
| * | | Merge | Kushal Das | 2014-04-15 | 3 | -0/+9 |
| |\ \ | |/ | |||||
| | * | Closes Issue 21222. | Kushal Das | 2014-04-15 | 3 | -0/+9 |
| | | | | | | | | | Passing name keyword argument to mock.create_autospec now works. | ||||
| * | | Merge 3.4 branch. | doko@ubuntu.com | 2014-04-15 | 2 | -1/+5 |
| |\ \ | |/ | |||||
| | * | - 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. | ||||
| * | | Closes Issue 17861: Autogenerate Include/opcode.h from opcode.py. | Kushal Das | 2014-04-15 | 7 | -141/+239 |
| | | | | | | | | | | | It includes required changes in Makefile.pre.in and configure.ac among other files. | ||||
| * | | merge 3.4 | Yury Selivanov | 2014-04-15 | 0 | -0/+0 |
| |\ \ | |/ | |||||
| | * | asyncio.tasks: Make sure CoroWrapper.send proxies one argument correctly | Yury Selivanov | 2014-04-15 | 2 | -0/+20 |
| | | | | | | | | | Issue #21209. | ||||
| * | | asyncio.tasks: Make sure CoroWrapper.send proxies one argument correctly | Yury Selivanov | 2014-04-15 | 2 | -0/+20 |
| | | | | | | | | | Issue #21209. | ||||
| * | | Closes #21203: Updated fileConfig and dictConfig to remove inconsistencies. ↵ | Vinay Sajip | 2014-04-15 | 2 | -2/+11 |
| | | | | | | | | | Thanks to Jure Koren for the patch. | ||||
| * | | Closes #21197: Add lib64 -> lib symlink in venvs on 64-bit non-OS X POSIX. | Vinay Sajip | 2014-04-15 | 3 | -2/+22 |
| |\ \ | |/ | |||||
