Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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. | ||||
* | Fix the example output of count(). | Georg Brandl | 2011-01-13 | 1 | -1/+1 |
| | |||||
* | Issue #10225: Fixed the simple mistakes in doctests. | Alexander Belopolsky | 2011-01-12 | 3 | -3/+3 |
| | |||||
* | Add entry for Barrier objects. | Raymond Hettinger | 2011-01-11 | 1 | -1/+1 |
| | |||||
* | Improved footnote for the %Y directive slightly. | Alexander Belopolsky | 2011-01-10 | 1 | -5/+5 |
| | |||||
* | Improved description of %Y directive. | Alexander Belopolsky | 2011-01-10 | 1 | -7/+16 |
| | |||||
* | Issue #2568: Removed bogus rationale for supporting tm_sec=61. | Alexander Belopolsky | 2011-01-10 | 2 | -14/+14 |
| | |||||
* | Missed two source links | Raymond Hettinger | 2011-01-10 | 2 | -8/+7 |
| | |||||
* | Separate source link from main text. | Raymond Hettinger | 2011-01-10 | 26 | -0/+52 |
| | |||||
* | Fixed a footnote reference | Alexander Belopolsky | 2011-01-10 | 1 | -1/+1 |
| | |||||
* | Move source links to consistent location and remove wordy, big yellow boxes. | Raymond Hettinger | 2011-01-10 | 26 | -114/+37 |
| | |||||
* | #10871: "file" does not exist anymore in Python 3. Also adapt the reprs of ↵ | Georg Brandl | 2011-01-09 | 1 | -14/+14 |
| | | | | opened file objects. | ||||
* | Wrap some long examples and signatures. | Georg Brandl | 2011-01-09 | 1 | -7/+14 |
| | |||||
* | #10869: do not visit root node twice in ast.increment_lineno(). | Georg Brandl | 2011-01-09 | 1 | -3/+3 |
| | |||||
* | zlib only works with bytes objects. | Georg Brandl | 2011-01-08 | 1 | -22/+22 |
| | |||||
* | Fixed documentation to reflect recent changes for years < 1900. | Alexander Belopolsky | 2011-01-08 | 2 | -6/+19 |
| | |||||
* | Issue 9717: Segregate and improve the documentation of "in-place" operators | Raymond Hettinger | 2011-01-08 | 1 | -85/+109 |
| | | | | in the operator module. | ||||
* | #10855: document close() semantics of wave objects. | Georg Brandl | 2011-01-08 | 1 | -9/+15 |
| | |||||
* | Issue 10533: Need example of using __missing__. | Raymond Hettinger | 2011-01-08 | 1 | -2/+14 |
| | |||||
* | Issue #10813: Small improvement to decimal money format recipe. | Raymond Hettinger | 2011-01-08 | 1 | -1/+2 |
| | |||||
* | #10686: recode non-ASCII headers to 'unknown-8bit' instead of ?s. | R. David Murray | 2011-01-07 | 3 | -7/+14 |
| | | | | | | This applies only when generating strings from non-RFC compliant binary input; it makes the existing recoding behavior more consistent (ie: now no data is lost when recoding). | ||||
* | Revert r87821 which moved the source link to the wrong section (from the ↵ | Raymond Hettinger | 2011-01-07 | 1 | -6/+5 |
| | | | | module intro covering the module to a section on thread imports). | ||||
* | Revert r87823 which moved the source link to the wrong section. | Raymond Hettinger | 2011-01-07 | 1 | -3/+5 |
| | |||||
* | Fix indent. | Georg Brandl | 2011-01-07 | 1 | -1/+1 |
| | |||||
* | Combine the two seealso sections. | Raymond Hettinger | 2011-01-07 | 1 | -6/+4 |
| | |||||
* | Issue #10827: Changed the rules for 2-digit years. The time.asctime | Alexander Belopolsky | 2011-01-07 | 1 | -15/+26 |
| | | | | | | | | function will now format any year when time.accept2dyear is false and will accept years >= 1000 otherwise. The year range accepted by time.mktime and time.strftime is still system dependent, but time.mktime will now accept full range supported by the OS. Conversion of 2-digit years to 4-digit is deprecated. | ||||
* | Mention multiprocessing.Queue in the queue docs | Antoine Pitrou | 2011-01-07 | 1 | -4/+9 |
| | |||||
* | Group seealsos | Antoine Pitrou | 2011-01-07 | 2 | -8/+4 |
| |