| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Patch by Paul Sokolovsky to support the get() method. | Guido van Rossum | 1999-08-11 | 1 | -0/+5 |
|
|
* | (py-shell): Set the default shell if not set yet. It's sometimes | Barry Warsaw | 1999-08-10 | 1 | -0/+3 |
|
|
* | Allow comment characters (#) to be escaped: | Greg Ward | 1999-08-10 | 1 | -14/+37 |
|
|
* | Added __del__ method to GzipFile class that will flush and close the | Andrew M. Kuchling | 1999-08-10 | 1 | -0/+5 |
|
|
* | In note mentioning [].remove()'s exception, tell what exception is | Fred Drake | 1999-08-09 | 1 | -25/+21 |
|
|
* | Patch by Marc-Andre Lemburg to add a bunch more symbols. | Guido van Rossum | 1999-08-09 | 1 | -2/+86 |
|
|
* | Ofir Reichenberg suggested to apply htonl() to grpaddr in openmcastsock(). | Guido van Rossum | 1999-08-07 | 1 | -3/+3 |
|
|
* | Add index entries for open(): | Fred Drake | 1999-08-05 | 1 | -1/+4 |
|
|
* | Add index entry "I/O control, buffering" for fdopen(). | Fred Drake | 1999-08-05 | 1 | -0/+1 |
|
|
* | Add index entry "I/O control, buffering" for makefile(). | Fred Drake | 1999-08-05 | 1 | -3/+4 |
|
|
* | Vladimir Marangozov fixes an AIX-specific problem, writing: | Guido van Rossum | 1999-08-04 | 1 | -4/+7 |
|
|
* | Started documentation on buffer objects & types. Very preliminary. | Fred Drake | 1999-08-04 | 1 | -1/+66 |
|
|
* | PyBuffer_New(): Raise ValueError if size is negative (the other | Fred Drake | 1999-08-04 | 1 | -1/+6 |
|
|
* | Added available() method, which checks whether quicktime is installed at all (by | Jack Jansen | 1999-08-04 | 2 | -0/+104 |
|
|
* | Change the directory tree walking example to use clearer variable | Guido van Rossum | 1999-08-03 | 1 | -11/+14 |
|
|
* | It turns out that modifying the environment strings is not safe. | Guido van Rossum | 1999-08-03 | 1 | -6/+16 |
|
|
* | Re-write in Python for portability. About 30% slower, but who cares?! | Fred Drake | 1999-08-03 | 1 | -26/+61 |
|
|
* | remap_element_names(): Only used for things that the new conversion | Fred Drake | 1999-08-03 | 1 | -32/+6 |
|
|
* | The new conversion engine supports more of the table re-writing than | Fred Drake | 1999-08-03 | 1 | -6/+9 |
|
|
* | Removed PyMapping_Clear() -- it was wishful thinking and serves no | Guido van Rossum | 1999-08-02 | 1 | -6/+0 |
|
|
* | Use the mksourcepgk script instead of mktarball.sh. | Fred Drake | 1999-08-02 | 1 | -6/+7 |
|
|
* | Remove obsolete version of script. | Fred Drake | 1999-08-02 | 1 | -84/+0 |
|
|
* | Re-implementation of mktarball.sh as a more portable Python script; | Fred Drake | 1999-08-02 | 1 | -0/+139 |
|
|
* | bwrite(), ewrite(): Helpers for diagnostic output; essentially the | Fred Drake | 1999-08-02 | 1 | -30/+61 |
|
|
* | Mostly minor changes. | Fred Drake | 1999-08-02 | 1 | -52/+23 |
|
|
* | This doesn't need to do nearly as much for the new conversion, so | Fred Drake | 1999-08-02 | 1 | -24/+0 |
|
|
* | A few small improvements to the conversion. | Fred Drake | 1999-08-02 | 1 | -3/+7 |
|
|
* | Markup nits. | Fred Drake | 1999-08-02 | 1 | -40/+33 |
|
|
* | Fixed hyperlink references to the __builtin__ and __main__ modules; | Fred Drake | 1999-08-02 | 1 | -2/+2 |
|
|
* | Mark Hammond writes: | Guido van Rossum | 1999-07-30 | 3 | -3/+9 |
|
|
* | Remove some redundant code from Canvas.tag_bind(), which added all | Guido van Rossum | 1999-07-30 | 1 | -11/+2 |
|
|
* | Ripped out the old conversion. | Fred Drake | 1999-07-29 | 1 | -367/+7 |
|
|
* | Added a few more passes through the document fragment. Not actually | Fred Drake | 1999-07-29 | 1 | -11/+126 |
|
|
* | Massive changes. | Fred Drake | 1999-07-29 | 1 | -38/+478 |
|
|
* | Minor updates. | Fred Drake | 1999-07-29 | 1 | -4/+8 |
|
|
* | Use the (new) buildFragment() method of the EsisBuilder rather than | Fred Drake | 1999-07-29 | 1 | -15/+1 |
|
|
* | Some minor cleanup. | Fred Drake | 1999-07-29 | 1 | -20/+18 |
|
|
* | Conversion specification, used by a new path through latex2esis.py. | Fred Drake | 1999-07-29 | 1 | -0/+631 |
|
|
* | Minor update. | Fred Drake | 1999-07-29 | 1 | -3/+6 |
|
|
* | Change an {\em ...} to \var{...} and a {\bf ...} to \program{...} (the | Fred Drake | 1999-07-29 | 1 | -1/+1 |
|
|
* | A few minor Customize changes: | Barry Warsaw | 1999-07-28 | 1 | -3/+6 |
|
|
* | (python-mode): Set which interpreter (CPython or JPython) to use the | Barry Warsaw | 1999-07-28 | 1 | -18/+21 |
|
|
* | Another patch from Andy Dustman: | Guido van Rossum | 1999-07-28 | 1 | -1/+8 |
|
|
* | (py-beginning-of-def-or-class): Only move to match-beginning if the | Barry Warsaw | 1999-07-27 | 1 | -2/+2 |
|
|
* | Add support for bzip2 compression. | Fred Drake | 1999-07-27 | 1 | -2/+30 |
|
|
* | Add support for bzip2 using --bzip2. | Fred Drake | 1999-07-27 | 1 | -4/+11 |
|
|
* | Ignore additional compressed formats. | Fred Drake | 1999-07-27 | 1 | -0/+2 |
|
|
* | Added description of optional parameter to UserDict constructor. | Fred Drake | 1999-07-26 | 1 | -2/+5 |
|
|
* | Add zip archive support for html, pdf, ps, and latex archives. | Fred Drake | 1999-07-23 | 1 | -1/+22 |
|
|
* | Add --zip parameter; make this able to produce .zip files as well as | Fred Drake | 1999-07-23 | 1 | -3/+20 |
|
|