Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - Issue #11079: The /Applications/Python x.x folder created by the Mac | Ned Deily | 2011-02-07 | 1 | -5/+26 |
| | | | | | OS X installers now includes a link to the installed documentation plus another in the framework share/doc directory. | ||||
* | Issue #11079: The /Applications/Python x.x folder created by the Mac | Ned Deily | 2011-02-07 | 4 | -10/+10 |
| | | | | | OS X installers no longer includes an Extras directory. The Tools directory is now installed in the framework under share/doc. | ||||
* | Clarify that IMAP4() implicitly calls open(), and that logout() implicitly ↵ | Antoine Pitrou | 2011-02-07 | 1 | -3/+5 |
| | | | | calls shutdown(). | ||||
* | Spelling fixes. | Georg Brandl | 2011-02-07 | 1 | -3/+3 |
| | |||||
* | Consistent heading spacing, and fix two typos. | Georg Brandl | 2011-02-07 | 1 | -2/+31 |
| | |||||
* | Issue 10971: Make test_zipimport_support once again compatible with refleak ↵ | Nick Coghlan | 2011-02-07 | 2 | -48/+60 |
| | | | | hunting (reviewed by Georg Brandl) | ||||
* | Add link to table for Tcl/Tk issues on the Mac. | Raymond Hettinger | 2011-02-07 | 1 | -3/+4 |
| | |||||
* | #11132: pass optimize parameter to recursive call in ↵ | Georg Brandl | 2011-02-07 | 4 | -1/+15 |
| | | | | compileall.compile_dir(). Reviewed by Eric A. | ||||
* | #8691: document that right alignment is default for numbers. | Georg Brandl | 2011-02-07 | 2 | -2/+3 |
| | |||||
* | #11138: fix order of fill and align specifiers. | Georg Brandl | 2011-02-07 | 1 | -1/+1 |
| | |||||
* | Fix some typos and grammar | Eli Bendersky | 2011-02-07 | 1 | -11/+11 |
| | |||||
* | Fix some typos and grammar | Eli Bendersky | 2011-02-07 | 1 | -9/+8 |
| | | | | [commit during RC with Brett's approval] | ||||
* | Typo. Doh! | Raymond Hettinger | 2011-02-07 | 1 | -1/+1 |
| | |||||
* | Fix awkwardly rendered sentence. | Raymond Hettinger | 2011-02-06 | 1 | -3/+3 |
| | |||||
* | Issue #11071: Various improvements to whatsnew. | Raymond Hettinger | 2011-02-06 | 1 | -19/+50 |
| | |||||
* | Small markup and wording tweaks for the sorting-howto. | Raymond Hettinger | 2011-02-06 | 1 | -6/+6 |
| | |||||
* | Mention that people going the source compatibility route should run 2to3 to ↵ | Brett Cannon | 2011-02-05 | 1 | -1/+3 |
| | | | | find pain points. | ||||
* | Soften wording on doctest. | Brett Cannon | 2011-02-05 | 1 | -4/+8 |
| | |||||
* | Re-arrange and clarify some __future__ import statements. | Brett Cannon | 2011-02-05 | 1 | -26/+47 |
| | | | | | | | The absolute_import statement got moved to a new Python 2.5 and Newer section as it was available since then. The division statement got moved to Common Gotchas since it has been around for so long that any modern Python program can use it. | ||||
* | issue7678 - Properly document how to replace a shell pipeline so that SIGPIPE | Gregory P. Smith | 2011-02-05 | 1 | -0/+3 |
| | | | | happens when the end exits before the beginning. | ||||
* | Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check | Martin v. Löwis | 2011-02-05 | 7 | -1/+32 |
| | | | | in the limited ABI | ||||
* | Issue #11121: Fix building with --enable-shared. | Martin v. Löwis | 2011-02-05 | 3 | -493/+539 |
| | |||||
* | Use an internal reference instead of hard-coded URI. | Éric Araujo | 2011-02-05 | 1 | -1/+1 |
| | |||||
* | Everybody hates this one :) (bytes indexing) | Antoine Pitrou | 2011-02-05 | 1 | -0/+31 |
| | |||||
* | Soften the wording about tracebacks. Reference cycles *don't* | Antoine Pitrou | 2011-02-05 | 1 | -8/+13 |
| | | | | prevent garbage collection! (fortunately) | ||||
* | Fix entries pertaining to file I/O | Antoine Pitrou | 2011-02-05 | 1 | -27/+30 |
| | |||||
* | Mention -b and -bb | Antoine Pitrou | 2011-02-05 | 1 | -0/+31 |
| | |||||
* | Mention asyncore and Twisted in the library FAQ. | Antoine Pitrou | 2011-02-05 | 1 | -1/+8 |
| | |||||
* | Mention concurrent.futures and update answers about the GIL. | Antoine Pitrou | 2011-02-05 | 1 | -21/+27 |
| | |||||
* | Update test of "why is Python installed" FAQ. | Antoine Pitrou | 2011-02-05 | 1 | -5/+5 |
| | |||||
* | Mention Cython and remove obsolete alternatives | Antoine Pitrou | 2011-02-05 | 3 | -12/+11 |
| | |||||
* | Update info in the GUI FAQ | Antoine Pitrou | 2011-02-05 | 1 | -12/+18 |
| | |||||
* | There was a possibility that the initialization of _sqlite, when it failed, | Brett Cannon | 2011-02-04 | 2 | -1/+3 |
| | | | | | | would lead to a decref of a NULL. Fixes issue #11110. | ||||
* | Mention that seek and tell over a TextIOWrapper can be very slow. | Antoine Pitrou | 2011-02-04 | 1 | -0/+2 |
| | |||||
* | Issue #11118: Fix bogus export of None in python3.dll. | Martin v. Löwis | 2011-02-04 | 3 | -12/+4 |
| | |||||
* | use 3-space indents. | Brett Cannon | 2011-02-03 | 1 | -69/+69 |
| | |||||
* | Add a HOWTO on how to port from Python 2 to Python 3. | Brett Cannon | 2011-02-03 | 2 | -0/+582 |
| | |||||
* | Remove lots of spaces within exception message. | Georg Brandl | 2011-02-03 | 1 | -2/+2 |
| | |||||
* | Punctuation typos. | Georg Brandl | 2011-02-03 | 1 | -2/+2 |
| | |||||
* | Punctuation typo. | Raymond Hettinger | 2011-02-02 | 1 | -1/+1 |
| | |||||
* | Get command-line doctest of Lib/decimal.py to work again. | Raymond Hettinger | 2011-02-01 | 1 | -2/+2 |
| | | | | | | | If tested as '__main__' instead 'decimal', the tracebacks would abbreviate 'decimal.Inexact' as 'Inexact', breaking the doctests. (Reviewed by Antoine.) | ||||
* | Add a svn:ignore for PC/python3dll.obj | Antoine Pitrou | 2011-02-01 | 0 | -0/+0 |
| | |||||
* | Wording fix. | Eric Smith | 2011-02-01 | 1 | -1/+1 |
| | |||||
* | Issue #8275: Fix passing of callback arguments with ctypes under Win64. | Antoine Pitrou | 2011-01-31 | 5 | -1/+55 |
| | | | | Patch by Stan Mihai. Ok'ed by Georg. | ||||
* | #11083 typo: RuntimeException -> RuntimeError | Brian Curtin | 2011-01-31 | 1 | -1/+1 |
| | |||||
* | Issue #11081: Fixed struct.__all__. Reviewed by Georg Brandl. | Alexander Belopolsky | 2011-01-31 | 1 | -1/+1 |
| | |||||
* | Post-release updates. | Georg Brandl | 2011-01-31 | 2 | -1/+13 |
| | |||||
* | Recommend use of the tracker during the RC phase or just before a beta. | Raymond Hettinger | 2011-01-31 | 1 | -1/+4 |
| | |||||
* | Fix minor grammar nits. | Raymond Hettinger | 2011-01-31 | 1 | -27/+20 |
| | | | | | Revert r88272 -- the examples are more readable with spacing. Add todos for difflib and logging. | ||||
* | Mention new parameter and attributes of the difflib.SequenceMatcher class ↵ | Eli Bendersky | 2011-01-31 | 1 | -0/+9 |
| | | | | added in 3.2 (issue 2986) |