Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added references to the email package. | Fred Drake | 2002-08-06 | 3 | -2/+11 |
| | | | | Closes SF bug #586937. | ||||
* | Remove mention of deprecated xreadlines method. | Guido van Rossum | 2002-08-06 | 1 | -2/+2 |
| | |||||
* | Document file.next(). Mark xreadlines obsolete (both method and | Guido van Rossum | 2002-08-06 | 2 | -9/+26 |
| | | | | | module). (One thing remains to be done: the gzip class has an xreadline method; this ought to be replaced by an iterator as well.) | ||||
* | Committing patch #591250 which provides "str1 in str2" when str1 is a | Barry Warsaw | 2002-08-06 | 1 | -8/+13 |
| | | | | string of longer than 1 character. | ||||
* | Add comment about os.path.walk()'s behavior with symbolic links. | Steve Holden | 2002-08-06 | 1 | -0/+5 |
| | |||||
* | SF patch #591305 Documentation err in bytecode defs | Neal Norwitz | 2002-08-05 | 1 | -1/+1 |
| | |||||
* | Note that True and False are pickable objects | Raymond Hettinger | 2002-08-05 | 1 | -1/+1 |
| | |||||
* | Remove a syntax error in the example, spotted by Walter Hofman. | Steve Holden | 2002-08-04 | 1 | -1/+1 |
| | |||||
* | Document new heapreplace() function. | Tim Peters | 2002-08-03 | 1 | -0/+9 |
| | |||||
* | Document new heapify() function. | Tim Peters | 2002-08-03 | 1 | -5/+12 |
| | |||||
* | Minor markup changes. | Fred Drake | 2002-08-02 | 1 | -3/+4 |
| | |||||
* | Add docs for heapq.py. | Guido van Rossum | 2002-08-02 | 2 | -0/+165 |
| | |||||
* | indicate that 'b' is added to the mode flag if not given | Skip Montanaro | 2002-08-02 | 1 | -2/+2 |
| | |||||
* | Added new footnote about list.sort() stability. Repaired footnote about | Tim Peters | 2002-08-01 | 1 | -4/+12 |
| | | | | | | | | | | using sort() with comparison functions (it made reference to the non- existent "builtin-in function sort()"). BTW, I changed list.sort's docstring to contain the word "stable" -- the easiest way to tell whether a particular Python version's sort *is* stable is to look for "stable" in the docstring. I'm not sure whether to advertise this <wink>. | ||||
* | SF patch #581414: info reader bug | Fred Drake | 2002-07-30 | 1 | -1/+3 |
| | | | | | | | | The "Matching vs. Searching" Info node is unreachable from the Info program (but is fine in Emacs's Info mode). This patch seems to fix it. This is the only occurrence where the info reader fails, so probably it could be addressed in the python docs as a workaround. Forwarded the report to the info maintainer. | ||||
* | Patch #573770: Implement lchown. | Martin v. Löwis | 2002-07-28 | 1 | -0/+7 |
| | |||||
* | Small clarifications when referring to the sys.exc_* variables so that | Fred Drake | 2002-07-25 | 1 | -15/+15 |
| | | | | | | readers are not given the wrong impression that they should be using those on a regualar basis. This closes SF bug #585598. | ||||
* | Flesh out description of getlogin() and recommend against using it. | Jeremy Hylton | 2002-07-24 | 1 | -2/+3 |
| | |||||
* | add versionadded to doc | Neal Norwitz | 2002-07-20 | 1 | -0/+3 |
| | |||||
* | Doc patch from SF 474274 (pure Python strptime by Brett Cannon). | Guido van Rossum | 2002-07-19 | 1 | -7/+0 |
| | |||||
* | Added documentation for the buffer_text and related attributes of the | Fred Drake | 2002-07-17 | 1 | -0/+23 |
| | | | | xmlparser object provided by pyexpat, new in Python 2.3. | ||||
* | reduce(): Clarified what is returned in the case of a sequence 1 item long and | Fred Drake | 2002-07-17 | 1 | -6/+6 |
| | | | | initial/default value. | ||||
* | Record the decision that StopIteration is a sink state (see recent | Guido van Rossum | 2002-07-16 | 1 | -0/+7 |
| | | | | | | discussion in python-dev with subject "Termination of two-arg iter()"). Implementation will follow. | ||||
* | Clarify that the description of sys.path[0] is only valid upon program | Guido van Rossum | 2002-07-15 | 1 | -2/+5 |
| | | | | start-up. | ||||
* | Clarify the return value of __nonzero__(): It *must* be an integer. | Fred Drake | 2002-07-12 | 1 | -3/+3 |
| | | | | Closes SF bug #579991. | ||||
* | Document gc.get_objects(). | Fred Drake | 2002-07-10 | 1 | -0/+6 |
| | | | | Closes SF bug #578308. | ||||
* | Note that unicode() can raise LookupError for unknown codecs. | Fred Drake | 2002-07-09 | 1 | -1/+2 |
| | | | | Closes SF bug #513666. | ||||
* | Fix typo reported by Kent Engström, and a bunch of broken markup. | Fred Drake | 2002-07-08 | 1 | -11/+11 |
| | |||||
* | Fix typo: "an Unicode string" --> "a Unicode string" | Fred Drake | 2002-07-08 | 1 | -2/+2 |
| | | | | Clarify the return value when the parameter is a Unicode object. | ||||
* | Revise asyncore documentation and document asynchat for the first time. | Steve Holden | 2002-07-03 | 3 | -55/+346 |
| | |||||
* | Fix up a few more consistency nits and incorrectly applied markup. | Fred Drake | 2002-07-03 | 1 | -21/+29 |
| | | | | Further clarify the English-centricity of fix_sentence_endings. | ||||
* | Add annotations that describe the change in the "errors" and "failures" | Fred Drake | 2002-07-02 | 1 | -0/+4 |
| | | | | attributes of the TestResult. | ||||
* | Update the documentation of the errors and failures attributes of the | Fred Drake | 2002-07-02 | 1 | -6/+48 |
| | | | | | | TestResult object. Add an example of how to get even more information for apps that can use it. Closes SF bug #558278. | ||||
* | Don't list all the keyword args to the TextWrapper constructor in the | Greg Ward | 2002-07-02 | 1 | -15/+23 |
| | | | | | | | | | | | classdesc -- just use "..." with prose explaining the correspondence between keyword args and instance attributes. Document 'width' along with the other instance attributes. Describe default values consistently. Typo fixes. | ||||
* | Attempt to clarify removedirs(). | Fred Drake | 2002-07-02 | 1 | -1/+1 |
| | | | | Based on SF bug #574773. | ||||
* | Deal with & remove the XXX comments. | Fred Drake | 2002-07-02 | 1 | -30/+24 |
| | | | | Change the markup to be more like the rest of the documentation. | ||||
* | Implement the encoding argument for toxml and toprettyxml. | Martin v. Löwis | 2002-06-30 | 1 | -1/+36 |
| | | | | Document toprettyxml. | ||||
* | Fixed bug 574978 shutil example out of sync with source code | Raymond Hettinger | 2002-06-30 | 1 | -2/+1 |
| | |||||
* | Fix bug 575221 referred to dictionary type instead of dict. | Raymond Hettinger | 2002-06-30 | 1 | -1/+1 |
| | |||||
* | Clarify the version information for the unicode() built-in. | Fred Drake | 2002-06-29 | 1 | -6/+9 |
| | | | | Closes SF bug #575272. | ||||
* | Add documentation for new textwrap module. | Greg Ward | 2002-06-29 | 2 | -0/+142 |
| | |||||
* | Clean up some markup. | Fred Drake | 2002-06-27 | 1 | -5/+6 |
| | |||||
* | dis.dis() also supports modules | Neal Norwitz | 2002-06-26 | 1 | -1/+2 |
| | |||||
* | Fix bug #573916. Sender and recipients reversed in email example. | Raymond Hettinger | 2002-06-26 | 1 | -2/+2 |
| | |||||
* | add seealso link to the bisect module | Skip Montanaro | 2002-06-26 | 1 | -0/+4 |
| | |||||
* | add /F's PriorityQueue example | Skip Montanaro | 2002-06-26 | 1 | -1/+19 |
| | |||||
* | Talk about interfaces rather than implementation classes where appropriate. | Fred Drake | 2002-06-25 | 2 | -42/+60 |
| | | | | | | Add hyperlinks to make the documentation on the Attributes and AttributesNS interfaces more discoverable. Closes SF bug #484603. | ||||
* | Added some more links to the "See also" section. | Fred Drake | 2002-06-25 | 1 | -0/+9 |
| | |||||
* | When talking about interfaces, use the interface names, not the names | Fred Drake | 2002-06-25 | 1 | -1/+1 |
| | | | | of the implementation classes. (Remove the "Impl" from two names.) | ||||
* | Fix typo | Raymond Hettinger | 2002-06-25 | 1 | -1/+1 |
| |