Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make Lib/crypt.py meet PEP 8 standards. This also led to a tweak in the new API | Brett Cannon | 2011-02-22 | 1 | -7/+14 |
| | | | | by making methods() into a module attribute as it is statically calculated. | ||||
* | Issue #10924: Adding salt and Modular Crypt Format to crypt library. | Sean Reifscheider | 2011-02-22 | 1 | -9/+97 |
| | |||||
* | Issue #11085: Moved collections abstract base classes into a separate module | Raymond Hettinger | 2011-02-22 | 3 | -122/+145 |
| | | | | | | called collections.abc, following the pattern used by importlib.abc. For backwards compatibility, the names continue to also be imported into the collections module. | ||||
* | Issue 11263: Fix link to source code. | Raymond Hettinger | 2011-02-21 | 1 | -1/+1 |
| | |||||
* | Doc fixups. | Raymond Hettinger | 2011-02-18 | 1 | -2/+4 |
| | |||||
* | Remove editing slip. | Georg Brandl | 2011-02-15 | 1 | -1/+3 |
| | |||||
* | Apply logging SocketHandler doc update by Vinay. | Georg Brandl | 2011-02-15 | 1 | -0/+21 |
| | |||||
* | Fix argument name typo in compileall docs. | R. David Murray | 2011-02-11 | 1 | -1/+1 |
| | |||||
* | Fixed issue11082 - Reject str for POST data with a TypeError. Document the ↵ | Senthil Kumaran | 2011-02-11 | 2 | -5/+12 |
| | | | | need to explicitly encode to bytes when using urlencode. | ||||
* | Add missing source links. | Raymond Hettinger | 2011-02-10 | 7 | -0/+22 |
| | |||||
* | Issue #11141: Fix the shelve documentation to use a list, not a range object. | Antoine Pitrou | 2011-02-07 | 1 | -2/+2 |
| | | | | Patch by SilentGhost. | ||||
* | Clarify that IMAP4() implicitly calls open(), and that logout() implicitly ↵ | Antoine Pitrou | 2011-02-07 | 1 | -3/+5 |
| | | | | calls shutdown(). | ||||
* | #8691: document that right alignment is default for numbers. | Georg Brandl | 2011-02-07 | 1 | -2/+2 |
| | |||||
* | #11138: fix order of fill and align specifiers. | Georg Brandl | 2011-02-07 | 1 | -1/+1 |
| | |||||
* | Fix awkwardly rendered sentence. | Raymond Hettinger | 2011-02-06 | 1 | -3/+3 |
| | |||||
* | 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. | ||||
* | Mention that seek and tell over a TextIOWrapper can be very slow. | Antoine Pitrou | 2011-02-04 | 1 | -0/+2 |
| | |||||
* | 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 |
| | |||||
* | #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. | ||||
* | Typos. | Raymond Hettinger | 2011-01-30 | 1 | -2/+2 |
| | |||||
* | 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 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.) | ||||
* | Fix the description of PIPE_BUF | Antoine Pitrou | 2011-01-25 | 1 | -1/+1 |
| | |||||
* | Fix the doc for PIPE_BUF | Antoine Pitrou | 2011-01-25 | 1 | -3/+5 |
| | |||||
* | 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 | 1 | -1/+1 |
| | |||||
* | 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 | 1 | -35/+56 |
| | | | | | | | | | | | | 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. | ||||
* | Missing source links. | Raymond Hettinger | 2011-01-24 | 4 | -0/+14 |
| | |||||
* | Add section for urllib.parse. | Raymond Hettinger | 2011-01-24 | 1 | -1/+2 |
| | |||||
* | minor clean-up. | Raymond Hettinger | 2011-01-23 | 1 | -2/+0 |
| | |||||
* | Add entry for reprlib. | Raymond Hettinger | 2011-01-23 | 1 | -0/+3 |
| | |||||
* | Add entry for shutil's archiving operations. | Raymond Hettinger | 2011-01-23 | 1 | -6/+10 |
| | |||||
* | Fix JSON docs about loads() accepting only str objects, not bytes. | Antoine Pitrou | 2011-01-21 | 1 | -11/+6 |
| | |||||
* | Add more examples | Raymond Hettinger | 2011-01-20 | 1 | -4/+4 |
| | |||||
* | #10944: add c_bool to types table. | Georg Brandl | 2011-01-19 | 1 | -0/+5 |
| | |||||
* | Issue #10934: Fixed and expanded Internaldate2tuple() and | Alexander Belopolsky | 2011-01-19 | 1 | -6/+10 |
| | | | | | Time2Internaldate() documentation. Thanks Joe Peterson for the report and the original patch. | ||||
* | Fix a few doc errors, mostly undefined keywords. | Georg Brandl | 2011-01-15 | 4 | -18/+18 |
| | |||||
* | urllib doc: add versionchanged sections for parse_qs() and parse_qsl() | Victor Stinner | 2011-01-14 | 1 | -0/+6 |
| | |||||
* | Add encoding and errors arguments to urllib.parse_qs() and urllib.parse_qsl() | Victor Stinner | 2011-01-14 | 1 | -2/+10 |
| | |||||
* | Issue #10902: Fix reference to run* methods | Eli Bendersky | 2011-01-14 | 1 | -1/+1 |
| | |||||
* | Issue #9268: Documented -m pickletools usage. | Alexander Belopolsky | 2011-01-13 | 1 | -0/+64 |
| | | | | Also added a source code link. |