Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Issue #16274: Fix test_asyncore on Solaris. | Trent Nelson | 2012-10-27 | 2 | -2/+5 | |
| | | ||||||
* | | #16332: use "except OSError as e" in subprocess docs. Patch by Berker Peksag. | Ezio Melotti | 2012-10-26 | 1 | -1/+1 | |
| | | ||||||
* | | #16206: Improve examples about dict construction. | Ezio Melotti | 2012-10-26 | 1 | -6/+6 | |
| | | ||||||
* | | Backport from 3.2: fix formatting of syntax description of function definition. | Chris Jerdonek | 2012-10-26 | 1 | -1/+1 | |
| | | ||||||
* | | #16303: remove extra quotes from exception and add (). Initial patch by ↵ | Ezio Melotti | 2012-10-24 | 1 | -2/+2 | |
| | | | | | | | | Vladimir Rutsky. | |||||
* | | #16210: combine the two type() docs. Patch by Pete Sevander. | Ezio Melotti | 2012-10-24 | 2 | -17/+13 | |
| | | ||||||
* | | #15040: Close files in mailbox tests for PyPy compatibility | Petri Lehtinen | 2012-10-23 | 4 | -11/+40 | |
| | | | | | | | | Original patch by Matti Picus. | |||||
* | | Issue #15853: Prevent IDLE crash on OS X when opening Preferences menu | Ned Deily | 2012-10-22 | 2 | -4/+6 | |
| | | | | | | | | with certain versions of Tk 8.5. Initial patch by Kevin Walzer. | |||||
* | | Closes #16294: 8 space indent in tutorial | Jesus Cea | 2012-10-22 | 1 | -2/+2 | |
| | | ||||||
* | | Issue #14398: Fix size truncation and overflow bugs in bz2 module. | Nadeem Vawda | 2012-10-21 | 4 | -138/+224 | |
| | | ||||||
* | | Issue #5148: Ignore 'U' in mode given to gzip.open() and gzip.GzipFile(). | Nadeem Vawda | 2012-10-21 | 3 | -0/+13 | |
| | | ||||||
* | | Fix whacky spacing in test_wsgiref | Antoine Pitrou | 2012-10-21 | 1 | -58/+0 | |
| | | ||||||
* | | Issue #16220: wsgiref now always calls close() on an iterable response. | Antoine Pitrou | 2012-10-21 | 4 | -36/+30 | |
| | | | | | | | | Patch by Brent Tubbs. | |||||
* | | Issue #10405: Document IDLE context menus in Standard Library document | Ned Deily | 2012-10-20 | 2 | -13/+51 | |
| | | | | | | | | | | | | and IDLE Help file. (Thanks to Nick ODell and Todd Rovito for suggestions.) Update Debug menu options in docs to match current code plus various other minor IDLE doc and help edits. | |||||
* | | No reason to use a generator here | Nick Coghlan | 2012-10-19 | 1 | -9/+8 | |
| | | ||||||
* | | Issue #6074: Actually delete the source file in the test as intended | Nick Coghlan | 2012-10-19 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #6074: Restore the long-broken support for running with read-only ↵ | Nick Coghlan | 2012-10-19 | 3 | -1/+56 | |
| | | | | | | | | source files on Windows | |||||
* | | Issue #16274: revert r79813:90a46f8943d0 changes to asyncore/test_asyncore. | Trent Nelson | 2012-10-18 | 2 | -38/+7 | |
| | | | | | | | | The backport from 3.2 included a few things not appropriate for 2.7. | |||||
* | | Issue #16274: backport of 3.2's asyncore/test_asyncore to 2.7. | Trent Nelson | 2012-10-18 | 2 | -7/+38 | |
| | | | | | | | | This fixes failing tests on Solaris 10. | |||||
* | | Issue #16257: make test_create_connection() handle ENETUNREACH. | Trent Nelson | 2012-10-18 | 1 | -1/+20 | |
| | | ||||||
* | | Don't add -OPT:Olimit to CFLAGS on AIX, SunOS, HP-UX or IRIX. It breaks them. | Trent Nelson | 2012-10-17 | 2 | -0/+10 | |
| | | ||||||
* | | Issue #9583: Document startup option/environment interaction. | Andrew Svetlov | 2012-10-17 | 2 | -2/+5 | |
| | | | | | | | | Patch by Todd Rovito. | |||||
* | | Issue #15819: use standard autoconf preset output variables. | Trent Nelson | 2012-10-17 | 3 | -8/+4 | |
| | | | | | | | | Reported by: Roumen Petrov | |||||
* | | Also add tests for TextIOWrapper.writelines() (issue #15744). | Antoine Pitrou | 2012-10-16 | 1 | -0/+22 | |
| | | ||||||
* | | Add tests for the writelines() method of file objects. | Antoine Pitrou | 2012-10-16 | 2 | -0/+44 | |
| | | | | | | | | Original patch by Felipe Cruz. | |||||
* | | Merge heads. | Trent Nelson | 2012-10-16 | 1 | -3/+4 | |
|\ \ | ||||||
| * \ | merge heads | Benjamin Peterson | 2012-10-16 | 3 | -0/+35 | |
| |\ \ | ||||||
| * | | | only run doctests when __doc__ is around | Benjamin Peterson | 2012-10-16 | 1 | -3/+4 | |
| | | | | ||||||
* | | | | Issue #15819: tweak logic in previous commit (e0a2b14a3cf9). | Trent Nelson | 2012-10-16 | 2 | -2/+2 | |
| |/ / |/| | | ||||||
* | | | Issue #15819: additional fixes for out-of-tree builds from read-only src. | Trent Nelson | 2012-10-16 | 3 | -0/+35 | |
|/ / | | | | | | | | | | | Unlike 3.2, 3.3 and 3.x, which add "-IObjects -IPython -IInclude" to BASECPPFLAGS when building out-of-tree, 2.7 only needs to add -IInclude (for Python-ast.h and graminit.h). | |||||
* | | Issue #15936: Reformat text for os.random to follow Larry Hastings suggestion | Andrew Svetlov | 2012-10-16 | 1 | -2/+2 | |
| | | ||||||
* | | Issue #15936: Add link from os.urandom to random.SystemRandom | Andrew Svetlov | 2012-10-16 | 1 | -1/+3 | |
| | | ||||||
* | | Issue #16244: Remove file mode overrides. | Vinay Sajip | 2012-10-16 | 1 | -2/+0 | |
| | | ||||||
* | | Issue #16225: Backport from 3.2: Add additional note to tutorial about looping. | Chris Jerdonek | 2012-10-16 | 2 | -11/+24 | |
| | | ||||||
* | | fix typo | Benjamin Peterson | 2012-10-16 | 1 | -1/+1 | |
| | | ||||||
* | | don't expect warnings from doctests if they can't run | Benjamin Peterson | 2012-10-16 | 2 | -3/+6 | |
| | | ||||||
* | | Issue #16227: Add to 2.x Unicode HOWTO a link to the Python 3 version. | Chris Jerdonek | 2012-10-16 | 1 | -2/+2 | |
| | | ||||||
* | | Issue #16206: Backport dict documentation improvements from 3.2. | Chris Jerdonek | 2012-10-13 | 2 | -31/+43 | |
| | | | | | | | | | | | | Improve the documentation of the dict constructor. This change includes replacing the single-line signature documentation with a more complete multiple-line signature. | |||||
* | | String exceptions aren't just deprecated, they are gone. | Raymond Hettinger | 2012-10-13 | 1 | -4/+1 | |
| | | ||||||
* | | Fixes Issue #12268 for the io module - File readline, readlines and | Gregory P. Smith | 2012-10-12 | 7 | -8/+293 | |
| | | | | | | | | | | | | | | | | | | | | | | read or readall methods no longer lose data when an underlying read system call is interrupted within an io module object. IOError is no longer raised due to a read system call returning EINTR from within these methods. This is a backport of changeset 781b95159954 from 3.2. The earlier 2.7 changeset 67dc99a989cd already fixed this for the builtin python 2.x file object. | |||||
* | | Issue #16199: Backport 2to3 typo fix from 3.2. | Chris Jerdonek | 2012-10-11 | 1 | -1/+1 | |
| | | ||||||
* | | Fix #16176. Properly identify Windows 8 via platform.platform() | Brian Curtin | 2012-10-11 | 2 | -1/+8 | |
| | | | | | | | | Add handling of the 6.2 release line, aka Windows 8 and Windows 2012 Server. | |||||
* | | Backport from 3.2: Fix placement of shell=True warning in subprocess.Popen() ↵ | Chris Jerdonek | 2012-10-11 | 1 | -11/+8 | |
| | | | | | | | | docs. | |||||
* | | Issue #16115: Backport subprocess.Popen() documentation improvements from 3.2. | Chris Jerdonek | 2012-10-11 | 1 | -17/+24 | |
| | | ||||||
* | | Issue #12947: Backport doctest documentation change from 3.3. | Chris Jerdonek | 2012-10-10 | 1 | -3/+3 | |
| | | ||||||
* | | Missed one instance of code-block:: text highlighting to revert. | Georg Brandl | 2012-10-10 | 1 | -3/+1 | |
| | | ||||||
* | | Issue #12947: revert earlier workaround and use a monkey-patch to enable ↵ | Georg Brandl | 2012-10-10 | 2 | -23/+37 | |
| | | | | | | | | showing doctest directives only in the doctest docs. | |||||
* | | Issue #12947: Backport doctest documentation improvements from 3.3. | Chris Jerdonek | 2012-10-10 | 1 | -35/+50 | |
| | | ||||||
* | | Fix Issue 15922: make howto/urllib2.rst doctests pass. | Senthil Kumaran | 2012-10-09 | 1 | -15/+15 | |
| | | | | | | | | Patch by Chris Jerdonek. Address Ezio's review comment. | |||||
* | | Issue #16168: Use specified socket type for domain sockets in SysLogHandler. | Vinay Sajip | 2012-10-09 | 1 | -8/+2 | |
| | |