| Commit message (Expand) | Author | Age | Files | Lines |
* | Added more information on the differences between the htmllib and HTMLParser | Fred Drake | 2001-07-05 | 3 | -3/+16 |
|
|
* | List constraints on xrange() objects. | Guido van Rossum | 2001-07-05 | 1 | -8/+14 |
|
|
* | Rip out the fancy behaviors of xrange that nobody uses: repeat, slice, | Guido van Rossum | 2001-07-05 | 1 | -6/+2 |
|
|
* | Marked the parameters to Stats.print_*() as optional. | Fred Drake | 2001-07-02 | 1 | -3/+3 |
|
|
* | Turns out Neil didn't intend for *all* of his gen-branch work to get | Tim Peters | 2001-06-29 | 1 | -10/+27 |
|
|
* | Correct a markup error for an accented character. | Fred Drake | 2001-06-29 | 1 | -1/+1 |
|
|
* | Removed some stray periods, and fix up a number of visible markup | Fred Drake | 2001-06-29 | 1 | -18/+19 |
|
|
* | SourceForge bug #437041: | Fred Drake | 2001-06-29 | 1 | -8/+8 |
|
|
* | Simplify an example based on comment from Thomas Holenstein <thomas@hex.ch>: | Fred Drake | 2001-06-29 | 1 | -4/+1 |
|
|
* | Remove duplicate ', ' in dbhash.open()'s argument list. | Thomas Wouters | 2001-06-27 | 1 | -1/+1 |
|
|
* | Remove the restriction on a mapping's .update() method. | Barry Warsaw | 2001-06-26 | 1 | -9/+7 |
|
|
* | Teach the types module about generators. Thanks to James Althoff on the | Tim Peters | 2001-06-25 | 1 | -0/+6 |
|
|
* | Updated link to zlib's home page. | Fred Drake | 2001-06-25 | 1 | -3/+2 |
|
|
* | Fix typo | Andrew M. Kuchling | 2001-06-23 | 1 | -1/+1 |
|
|
* | Correct erroneous description of precmd. | Eric S. Raymond | 2001-06-23 | 1 | -2/+6 |
|
|
* | Contributed updates from Harald Hanche-Olsen, giving details of the branch | Fred Drake | 2001-06-23 | 1 | -0/+49 |
|
|
* | Re-organize a little, clean up some markup. | Fred Drake | 2001-06-22 | 1 | -52/+73 |
|
|
* | Corrected an error in the information on supporting weak references in | Fred Drake | 2001-06-22 | 1 | -9/+7 |
|
|
* | Fix & clean up the information about building Python with large file support | Fred Drake | 2001-06-22 | 1 | -4/+3 |
|
|
* | Update to include the license information in a less annoying place. | Fred Drake | 2001-06-20 | 1 | -0/+3 |
|
|
* | Document the new encodestring() and decodestring() functions. Also, | Barry Warsaw | 2001-06-19 | 1 | -2/+19 |
|
|
* | Document that filter is added in 2.2. | Martin v. Löwis | 2001-06-16 | 1 | -0/+1 |
|
|
* | Add a version annotation for the Q and q format codes. | Fred Drake | 2001-06-15 | 1 | -1/+2 |
|
|
* | Fix an improperly placed comma. | Fred Drake | 2001-06-14 | 1 | -1/+1 |
|
|
* | Fixed reference to table notes for {}.keys() and {}.items() -- these | Fred Drake | 2001-06-12 | 1 | -4/+4 |
|
|
* | Added q/Q standard (x-platform 8-byte ints) mode in struct module. | Tim Peters | 2001-06-12 | 1 | -7/+10 |
|
|
* | Add the appropriate availability annotations for the popen*() family of | Fred Drake | 2001-06-11 | 1 | -4/+7 |
|
|
* | Fixed parameter order for os.popen2(), os.popen3(), and os.popen(4). Added | Fred Drake | 2001-06-11 | 1 | -3/+11 |
|
|
* | Fix recent changes so that this section will format again. | Fred Drake | 2001-06-11 | 1 | -2/+3 |
|
|
* | Initial support for 'q' and 'Q' struct format codes: for now, only in | Tim Peters | 2001-06-10 | 1 | -5/+6 |
|
|
* | add warning about situation where code may be executed twice, once when | Skip Montanaro | 2001-06-08 | 1 | -0/+10 |
|
|
* | In the section on extending the profiler, add some additional discussion | Fred Drake | 2001-06-08 | 1 | -10/+45 |
|
|
* | Document filter. | Martin v. Löwis | 2001-06-07 | 1 | -0/+5 |
|
|
* | Fix bug #422702: Make flag argument to open optional, and document it that way. | Martin v. Löwis | 2001-06-05 | 1 | -1/+1 |
|
|
* | is -> if in rename description | Skip Montanaro | 2001-06-04 | 1 | -1/+1 |
|
|
* | Document os.getenv(). | Fred Drake | 2001-05-31 | 1 | -0/+7 |
|
|
* | Some general cleanup of the threading module documentation, including | Fred Drake | 2001-05-31 | 1 | -25/+15 |
|
|
* | Added entry for HTMLParser documentation. | Fred Drake | 2001-05-30 | 1 | -0/+1 |
|
|
* | Michel Pelletier <michel@digicool.com>: | Fred Drake | 2001-05-30 | 1 | -0/+136 |
|
|
* | readlink() description: Added note that the return value may be either | Fred Drake | 2001-05-29 | 1 | -5/+20 |
|
|
* | The parameter to the listen() method is not optional, but was marked as | Fred Drake | 2001-05-29 | 1 | -1/+1 |
|
|
* | Add a version annotation for splitdrive(); old, but as long as I managed | Fred Drake | 2001-05-25 | 1 | -0/+1 |
|
|
* | Add descriptions of {}.iteritems(), {}.iterkeys(), and {}.itervalues() | Fred Drake | 2001-05-25 | 1 | -12/+23 |
|
|
* | One more update related to the new get() and setdefault() methods on the | Fred Drake | 2001-05-22 | 1 | -5/+6 |
|
|
* | Update to add get() and setdefault() as supported mapping operations, and | Fred Drake | 2001-05-22 | 1 | -2/+8 |
|
|
* | Add some clarifications about the mapping interface presented by | Fred Drake | 2001-05-22 | 1 | -2/+4 |
|
|
* | Add a "See also" section with useful links. More should be added giving | Fred Drake | 2001-05-21 | 1 | -0/+15 |
|
|
* | Fix bug in smtplib example: the prompt said to end the message with ^D, | Fred Drake | 2001-05-20 | 1 | -3/+6 |
|
|
* | Beef up the unicode() description a bit, based on material from AMK's | Fred Drake | 2001-05-15 | 1 | -4/+12 |
|
|
* | Add some text to make the dircmp object section more readable, and move | Fred Drake | 2001-05-11 | 1 | -7/+16 |
|
|