Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Punctuation typos. | Georg Brandl | 2011-02-03 | 1 | -2/+2 |
| | |||||
* | Punctuation typo. | Raymond Hettinger | 2011-02-02 | 1 | -1/+1 |
| | |||||
* | Wording fix. | Eric Smith | 2011-02-01 | 1 | -1/+1 |
| | |||||
* | #11083 typo: RuntimeException -> RuntimeError | Brian Curtin | 2011-01-31 | 1 | -1/+1 |
| | |||||
* | 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) | ||||
* | Fix PEP-8 violation in argparse usage example (similar examples in ↵ | Eli Bendersky | 2011-01-31 | 1 | -9/+9 |
| | | | | argparse.rst do follow PEP-8) | ||||
* | Fix some grammar and typos | Eli Bendersky | 2011-01-31 | 1 | -6/+6 |
| | |||||
* | Update suspicious ignore file. | Georg Brandl | 2011-01-30 | 1 | -0/+18 |
| | |||||
* | Clarify the status of get_string() and recommend using the binary API. | Raymond Hettinger | 2011-01-30 | 1 | -2/+7 |
| | |||||
* | Add entry for the mailbox fixups. | Raymond Hettinger | 2011-01-30 | 1 | -0/+28 |
| | |||||
* | #9124: mailbox now accepts binary input and uses binary internally | R. David Murray | 2011-01-30 | 1 | -10/+28 |
| | | | | | | | | | | | | | | | | Although this patch contains API changes and is rather weighty for an RC phase, the mailbox module was essentially unusable without the patch since it would produce UnicodeErrors when handling non-ascii input at arbitrary and somewhat mysterious places, and any non-trivial amount of email processing will encounter messages with non-ascii bytes. The release manager approved the patch application. The changes allow binary input, and reject non-ASCII string input early with a useful message instead of failing mysteriously later. Binary is used internally for reading and writing the mailbox files. StringIO and Text file input are deprecated. Initial patch by Victor Stinner, validated and expanded by R. David Murray. | ||||
* | List known build/install problems for OS X. | Raymond Hettinger | 2011-01-30 | 1 | -1/+4 |
| | |||||
* | Markup nits. | Raymond Hettinger | 2011-01-30 | 1 | -3/+3 |
| | |||||
* | Add section for http.client. | Raymond Hettinger | 2011-01-30 | 1 | -6/+37 |
| | | | | | Link to OS X build instructions. Add back issue references for datetime. | ||||
* | Typos. | Raymond Hettinger | 2011-01-30 | 1 | -2/+2 |
| | |||||
* | fix reference to issue where the addition of select.PIPE_BUF was discussed | Giampaolo Rodolà | 2011-01-29 | 1 | -1/+1 |
| | |||||
* | Add entry for str.format_map(). | Raymond Hettinger | 2011-01-29 | 1 | -37/+56 |
| | | | | Add bullet list and reference to documentation section. | ||||
* | Added a placeholder for str.format_map, as discussed with Raymond. My prose ↵ | Eric Smith | 2011-01-28 | 1 | -0/+20 |
| | | | | is horrible, some cleanup is required. | ||||
* | Issue 10573: revert unittest docs to first / second | Michael Foord | 2011-01-28 | 1 | -30/+30 |
| | | | | | Minor internal change to unittest.TestCase.assertCountEqual Reviewed by R. David Murray | ||||
* | #11027: documented how to override SECTCRE | Łukasz Langa | 2011-01-28 | 1 | -0/+32 |
| | |||||
* | More source links | Raymond Hettinger | 2011-01-27 | 45 | -7/+161 |
| | |||||
* | Issue 11008: docs updated to show versionadded for dictConfig. | Vinay Sajip | 2011-01-27 | 1 | -0/+2 |
| | |||||
* | More typical sample invocation of tarfile. | Raymond Hettinger | 2011-01-27 | 1 | -1/+1 |
| | |||||
* | Add missing attributions. | Raymond Hettinger | 2011-01-27 | 1 | -2/+16 |
| | |||||
* | Update todo list. | Raymond Hettinger | 2011-01-27 | 1 | -1/+3 |
| | |||||
* | Add an entry for tarfile. | Raymond Hettinger | 2011-01-27 | 1 | -0/+32 |
| | |||||
* | More source links. | Raymond Hettinger | 2011-01-27 | 20 | -3/+71 |
| | |||||
* | Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into a | Raymond Hettinger | 2011-01-26 | 1 | -13/+14 |
| | | | | | | | keyword-only argument. The preceding positional argument was deprecated, so it made no sense to add filter as a positional argument. (Patch reviewed by Brian Curtin and Anthony Long.) | ||||
* | Markup nits. | Raymond Hettinger | 2011-01-26 | 1 | -18/+26 |
| | |||||
* | Add a few imports to examples. | Raymond Hettinger | 2011-01-26 | 1 | -13/+25 |
| | |||||
* | Fix the description of PIPE_BUF | Antoine Pitrou | 2011-01-25 | 2 | -4/+4 |
| | |||||
* | Fix the doc for PIPE_BUF | Antoine Pitrou | 2011-01-25 | 1 | -3/+5 |
| | |||||
* | Typo. | Raymond Hettinger | 2011-01-25 | 1 | -1/+1 |
| | |||||
* | Add entries for select and site. | Raymond Hettinger | 2011-01-25 | 1 | -0/+47 |
| | |||||
* | Add math.erfc and turtledemo. | Raymond Hettinger | 2011-01-25 | 1 | -2/+17 |
| | |||||
* | Typo. | Raymond Hettinger | 2011-01-25 | 1 | -1/+1 |
| | |||||
* | Nits. | Raymond Hettinger | 2011-01-25 | 1 | -5/+5 |
| | |||||
* | Add entry for the math module. | Raymond Hettinger | 2011-01-25 | 1 | -0/+39 |
| | |||||
* | Add entry for io.BytesIO.getbuffer(). | Raymond Hettinger | 2011-01-24 | 1 | -0/+29 |
| | |||||
* | Issue #11000 ast.parse parses source, not just expressions. | Terry Reedy | 2011-01-24 | 1 | -2/+2 |
| | |||||
* | Update last tix code example for 3.x, as already done for previous examples. | Terry Reedy | 2011-01-24 | 1 | -2/+2 |
| | |||||
* | Fix label syntax. | Georg Brandl | 2011-01-24 | 2 | -2/+2 |
| | |||||
* | Typo fix. | Georg Brandl | 2011-01-24 | 1 | -1/+1 |
| | |||||
* | #10960: fix 'stat' links, link to lstat from stat, general tidy of stat doc. | R. David Murray | 2011-01-24 | 2 | -35/+57 |
| | | | | | | | | | | | | Original patch by Michal Nowikowski, with some additions and wording fixes by me. I changed the wording from 'Performs a stat system call' to 'Performs the equivalent of a stat system call', since on Windows there are no stat/lstat system calls involved. I also extended Michal's breakout of the attributes into a list to the other paragraphs, and rearranged the order of the paragraphs in the 'stat' docs to make it flow better and put it in what I think is a more logical/useful order. | ||||
* | Typos. | Raymond Hettinger | 2011-01-24 | 1 | -2/+2 |
| | |||||
* | Missing source links. | Raymond Hettinger | 2011-01-24 | 4 | -0/+14 |
| |