summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #21289: Fix documentation building on Windows using Doc/make.bat.Zachary Ware2014-04-183-4/+5
| | | | | | Also fixes a long-standing typo in Doc/README.txt. Initial patch by Dave Sawyer.
* NEWS for latest asyncio commit.Guido van Rossum2014-04-181-0/+3
|
* asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream #163).Guido van Rossum2014-04-152-0/+59
|
* Fix a typo in the docstring of nb_index.Zachary Ware2014-04-181-1/+1
|
* Fix a typo in the signature for object.__ge__Zachary Ware2014-04-181-1/+1
|
* correct len signature in docstring (closes #21294)Benjamin Peterson2014-04-181-1/+1
|
* fix ref count annotations on sphinx >= 1.2.1 (closes #21286)Benjamin Peterson2014-04-171-1/+4
|
* - Issue #21285: Refactor and fix curses configure check to always searchdoko@ubuntu.com2014-04-173-38/+53
| | | | in a ncursesw directory.
* Fixes for KFreeBSD and the Hurd:doko@ubuntu.com2014-04-174-2/+15
| | | | | | | | - Issue #21274: Define PATH_MAX for GNU/Hurd in Python/pythonrun.c. - Issue #21276: posixmodule: Don't define USE_XATTRS on KFreeBSD and the Hurd. - Issue #21275: Fix a socket test on KFreeBSD.
* - Issue #15234: For BerkelyDB and Sqlite, only add the found library anddoko@ubuntu.com2014-04-172-2/+17
| | | | | include directories if they aren't already being searched. This avoids an explicit runtime library dependency.
* Clarify BROWSER envar behavior in webbrowser.py. Noted by David Turner. ↵Senthil Kumaran2014-04-171-6/+6
| | | | Closes #21248
* Correct the URL in the http.client example. Noted by Evens Fortuné. Closes ↵Senthil Kumaran2014-04-171-1/+1
| | | | #21229
* #18628: clarify index entry for source file encoding declaration.R David Murray2014-04-171-1/+1
| | | | Patch by Sam Lucidi.
* remove superfluous and useless lineBenjamin Peterson2014-04-161-1/+0
|
* use the called property of the run_pip mock rather than an assertion method ↵Benjamin Peterson2014-04-161-8/+8
| | | | that doesn't exist
* Address issue 18229 - Explain http.server.BaseHTTPRequestHandler's .headers ↵Senthil Kumaran2014-04-161-1/+4
| | | | | | attribute further. Initial patch by Caelyn McAulay.
* Try to fix buildbot failures on old OpenSSLs (< 1.0.0) - followup to issue ↵Antoine Pitrou2014-04-161-1/+6
| | | | #21015
* #18566: WhitespaceTerry Jan Reedy2014-04-161-5/+5
|
* Issue #18566: Clarify unittest setUp, tearDown doc. Patch by Nitika Agarwal.Terry Jan Reedy2014-04-162-7/+8
|
* #1704474: mark refleak test as specific to CPythonAndrew Kuchling2014-04-151-0/+1
| | | | Patch by Christian Hudon.
* #15840: make docs consistent by saying operations on closed files raise ↵Andrew Kuchling2014-04-161-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.
* #20874: reflow paragraph.R David Murray2014-04-161-7/+7
|
* #20874: update tutorial wording: sophisticated line editing is now standard.R David Murray2014-04-161-4/+3
| | | | Patch by Rafael Mejia.
* Issue #21245: updated documentation on exception() method and function.Vinay Sajip2014-04-151-2/+2
|
* Closes issue 21239. unittest.mock.patch.stopall() did not work ↵Michael Foord2014-04-153-6/+31
| | | | deterministically when the same name was patched multiple times.
* Run test_urllib2_localnet tests using unittest.main().Senthil Kumaran2014-04-151-7/+17
| | | | Capture threads in the setUpModule and cleanup threads in the tearDownModule.
* Closes Issue 21222.Kushal Das2014-04-153-0/+9
| | | | Passing name keyword argument to mock.create_autospec now works.
* - Issue #21223: Pass test_site/test_startup_imports when some of the extensionsdoko@ubuntu.com2014-04-152-1/+5
| | | | are built as builtins.
* asyncio.tasks: Make sure CoroWrapper.send proxies one argument correctlyYury Selivanov2014-04-152-0/+20
| | | | Issue #21209.
* Reverted 16efa8d27e4c after discussion with Eric.Vinay Sajip2014-04-153-13/+0
|
* Issue #21197: Add lib64 -> lib symlink in venvs on 64-bit non-OS X POSIX.Vinay Sajip2014-04-153-2/+22
|
* Closed issue #8931: Make alternate formatting for 'c' raise an exception. ↵Eric V. Smith2014-04-153-0/+13
| | | | Patch by Torsten Landschoff.
* misc.news: Remove whitespaceYury Selivanov2014-04-151-1/+1
|
* asyncio.tasks: Fix CoroWrapper to workaround yield-from bug in CPython < 3.4.1Yury Selivanov2014-04-153-1/+32
| | | | Closes issue #21209.
* Invoke test_urllibnet tests using unittest.main functionSenthil Kumaran2014-04-151-7/+3
|
* #15104: add backtick code markup.R David Murray2014-04-141-7/+7
|
* #17498: Defer SMTPServerDisconnected errors until the next command.R David Murray2014-04-143-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 headsSenthil Kumaran2014-04-141-1/+1
|\
| * Issue #13598: Added acknowledgements to Misc/NEWS.Eric V. Smith2014-04-141-1/+1
| |
* | merge headsSenthil Kumaran2014-04-143-2/+42
|\ \ | |/
| * Issue #13598: Add auto-numbering of replacement fields to string.Formatter.Eric V. Smith2014-04-143-2/+42
| |
* | merge headsSenthil Kumaran2014-04-141-0/+6
|\ \ | |/
| * Add conditional code for android's lack of definition of SYS_getdent64.Gregory P. Smith2014-04-141-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 Kumaran2014-04-142-45/+39
|/
* Issue 17826. Setting an iterable side_effect on a mock created by ↵Michael Foord2014-04-143-2/+34
| | | | create_autospec now works
* #15104: improve the discussion of __main__.R David Murray2014-04-141-5/+11
| | | | Patch by Sam Lucidi.
* Fix the NEWS Entry item. (Thanks Stéphane Wirtel)Senthil Kumaran2014-04-141-1/+1
|
* #18518: mention that including a return statement changes/breaks the behaviourAndrew Kuchling2014-04-141-0/+6
|
* do not generate pipe names in the temporary dirBenjamin Peterson2014-04-141-1/+1
|
* Issue #7776: Fix ``Host:'' header and reconnection when using ↵Senthil Kumaran2014-04-143-26/+100
| | | | | | http.client.HTTPConnection.set_tunnel(). Patch by Nikolaus Rath.