| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | reduce(): Clarified what is returned in the case of a sequence 1 item long and | Fred Drake | 2002-07-17 | 1 | -6/+6 |
|
|
* | Record the decision that StopIteration is a sink state (see recent | Guido van Rossum | 2002-07-16 | 1 | -0/+7 |
|
|
* | Clarify that the description of sys.path[0] is only valid upon program | Guido van Rossum | 2002-07-15 | 1 | -2/+5 |
|
|
* | Clarify the return value of __nonzero__(): It *must* be an integer. | Fred Drake | 2002-07-12 | 1 | -3/+3 |
|
|
* | Document gc.get_objects(). | Fred Drake | 2002-07-10 | 1 | -0/+6 |
|
|
* | Note that unicode() can raise LookupError for unknown codecs. | Fred Drake | 2002-07-09 | 1 | -1/+2 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | Add annotations that describe the change in the "errors" and "failures" | Fred Drake | 2002-07-02 | 1 | -0/+4 |
|
|
* | Update the documentation of the errors and failures attributes of the | Fred Drake | 2002-07-02 | 1 | -6/+48 |
|
|
* | Don't list all the keyword args to the TextWrapper constructor in the | Greg Ward | 2002-07-02 | 1 | -15/+23 |
|
|
* | Attempt to clarify removedirs(). | Fred Drake | 2002-07-02 | 1 | -1/+1 |
|
|
* | Deal with & remove the XXX comments. | Fred Drake | 2002-07-02 | 1 | -30/+24 |
|
|
* | Implement the encoding argument for toxml and toprettyxml. | Martin v. Löwis | 2002-06-30 | 1 | -1/+36 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | Fix typo | Raymond Hettinger | 2002-06-25 | 1 | -1/+1 |
|
|
* | Fix SF bug 568269 by enclosing 'computername' in a raw string | Raymond Hettinger | 2002-06-25 | 1 | -1/+1 |
|
|
* | SF # 572928 One word change for lib/libgettext.tex | Neal Norwitz | 2002-06-24 | 1 | -1/+1 |
|
|
* | Correct the RE equivalent of scanf()'s %x and %X patterns. | Fred Drake | 2002-06-22 | 1 | -1/+1 |
|
|
* | Make the docs for string.capitalize() match those of str.capitalize() | Fred Drake | 2002-06-20 | 1 | -1/+1 |
|
|
* | Add a note that divmod() with complex numbers is deprecated. | Fred Drake | 2002-06-20 | 1 | -0/+3 |
|
|
* | Added reference to the Expat home page. | Fred Drake | 2002-06-20 | 1 | -0/+6 |
|
|
* | Typo: bites --> bytes | Fred Drake | 2002-06-18 | 1 | -1/+1 |
|
|
* | Add description of the deadlock problem with child processes and pipes, and | Fred Drake | 2002-06-18 | 2 | -0/+67 |
|
|
* | Note the limitation that mime_decode_header() only works for Latin-1. | Fred Drake | 2002-06-18 | 1 | -0/+1 |
|
|
* | Clarified documentation for os.access(). | Fred Drake | 2002-06-18 | 1 | -5/+7 |
|
|
* | Clarified description of error handling for shutil.rmtree(). | Fred Drake | 2002-06-18 | 1 | -2/+3 |
|
|
* | Add IMAP4 QUOTA extension methods | Piers Lauder | 2002-06-17 | 1 | -1/+21 |
|
|
* | Make a start at describing the results of class/type unification | Steve Holden | 2002-06-14 | 1 | -121/+86 |
|
|
* | Refer the reader to the correct module for constant definitions. | Fred Drake | 2002-06-14 | 1 | -1/+1 |
|
|
* | Document the Binary.data attribute. | Fred Drake | 2002-06-14 | 1 | -5/+13 |
|
|
* | Use \code{True} (or False) instead of true/false. | Neal Norwitz | 2002-06-14 | 1 | -4/+4 |
|
|
* | Add "version added" for getpgid | Neal Norwitz | 2002-06-13 | 1 | -0/+1 |
|
|
* | Patch #568235: Add posix.setpgid. | Martin v. Löwis | 2002-06-13 | 1 | -0/+6 |
|
|
* | The opcode FOR_LOOP no longer exists. | Guido van Rossum | 2002-06-13 | 1 | -7/+3 |
|
|