summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* Issue #11141: Fix the shelve documentation to use a list, not a range object.Antoine Pitrou2011-02-071-2/+2
| | | | Patch by SilentGhost.
* Clarify that IMAP4() implicitly calls open(), and that logout() implicitly ↵Antoine Pitrou2011-02-071-3/+5
| | | | calls shutdown().
* #8691: document that right alignment is default for numbers.Georg Brandl2011-02-071-2/+2
|
* #11138: fix order of fill and align specifiers.Georg Brandl2011-02-071-1/+1
|
* Fix awkwardly rendered sentence.Raymond Hettinger2011-02-061-3/+3
|
* issue7678 - Properly document how to replace a shell pipeline so that SIGPIPEGregory P. Smith2011-02-051-0/+3
| | | | happens when the end exits before the beginning.
* Mention that seek and tell over a TextIOWrapper can be very slow.Antoine Pitrou2011-02-041-0/+2
|
* Punctuation typos.Georg Brandl2011-02-031-2/+2
|
* Punctuation typo.Raymond Hettinger2011-02-021-1/+1
|
* Wording fix.Eric Smith2011-02-011-1/+1
|
* #11083 typo: RuntimeException -> RuntimeErrorBrian Curtin2011-01-311-1/+1
|
* #9124: mailbox now accepts binary input and uses binary internallyR. David Murray2011-01-301-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 Hettinger2011-01-301-2/+2
|
* Issue 10573: revert unittest docs to first / secondMichael Foord2011-01-281-30/+30
| | | | | Minor internal change to unittest.TestCase.assertCountEqual Reviewed by R. David Murray
* #11027: documented how to override SECTCREŁukasz Langa2011-01-281-0/+32
|
* More source linksRaymond Hettinger2011-01-2745-7/+161
|
* Issue 11008: docs updated to show versionadded for dictConfig.Vinay Sajip2011-01-271-0/+2
|
* More source links.Raymond Hettinger2011-01-2720-3/+71
|
* Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into aRaymond Hettinger2011-01-261-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_BUFAntoine Pitrou2011-01-251-1/+1
|
* Fix the doc for PIPE_BUFAntoine Pitrou2011-01-251-3/+5
|
* Issue #11000 ast.parse parses source, not just expressions.Terry Reedy2011-01-241-2/+2
|
* Update last tix code example for 3.x, as already done for previous examples.Terry Reedy2011-01-241-2/+2
|
* Fix label syntax.Georg Brandl2011-01-241-1/+1
|
* Typo fix.Georg Brandl2011-01-241-1/+1
|
* #10960: fix 'stat' links, link to lstat from stat, general tidy of stat doc.R. David Murray2011-01-241-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 Hettinger2011-01-244-0/+14
|
* Add section for urllib.parse.Raymond Hettinger2011-01-241-1/+2
|
* minor clean-up.Raymond Hettinger2011-01-231-2/+0
|
* Add entry for reprlib.Raymond Hettinger2011-01-231-0/+3
|
* Add entry for shutil's archiving operations.Raymond Hettinger2011-01-231-6/+10
|
* Fix JSON docs about loads() accepting only str objects, not bytes.Antoine Pitrou2011-01-211-11/+6
|
* Add more examplesRaymond Hettinger2011-01-201-4/+4
|
* #10944: add c_bool to types table.Georg Brandl2011-01-191-0/+5
|
* Issue #10934: Fixed and expanded Internaldate2tuple() andAlexander Belopolsky2011-01-191-6/+10
| | | | | Time2Internaldate() documentation. Thanks Joe Peterson for the report and the original patch.
* Fix a few doc errors, mostly undefined keywords.Georg Brandl2011-01-154-18/+18
|
* urllib doc: add versionchanged sections for parse_qs() and parse_qsl()Victor Stinner2011-01-141-0/+6
|
* Add encoding and errors arguments to urllib.parse_qs() and urllib.parse_qsl()Victor Stinner2011-01-141-2/+10
|
* Issue #10902: Fix reference to run* methodsEli Bendersky2011-01-141-1/+1
|
* Issue #9268: Documented -m pickletools usage.Alexander Belopolsky2011-01-131-0/+64
| | | | Also added a source code link.
* Fix the example output of count().Georg Brandl2011-01-131-1/+1
|
* Issue #10225: Fixed the simple mistakes in doctests.Alexander Belopolsky2011-01-123-3/+3
|
* Add entry for Barrier objects.Raymond Hettinger2011-01-111-1/+1
|
* Improved footnote for the %Y directive slightly.Alexander Belopolsky2011-01-101-5/+5
|
* Improved description of %Y directive.Alexander Belopolsky2011-01-101-7/+16
|
* Issue #2568: Removed bogus rationale for supporting tm_sec=61.Alexander Belopolsky2011-01-102-14/+14
|
* Missed two source linksRaymond Hettinger2011-01-102-8/+7
|
* Separate source link from main text.Raymond Hettinger2011-01-1026-0/+52
|
* Fixed a footnote referenceAlexander Belopolsky2011-01-101-1/+1
|
* Move source links to consistent location and remove wordy, big yellow boxes.Raymond Hettinger2011-01-1026-114/+37
|