Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Modernized for 1.5 | Guido van Rossum | 1997-05-09 | 1 | -5/+8 |
| | |||||
* | Regenerated on a newer Linux version. | Guido van Rossum | 1997-05-09 | 2 | -14/+268 |
| | |||||
* | Fix the NDELAY test; avoid outputting binary garbage. | Guido van Rossum | 1997-05-09 | 1 | -3/+3 |
| | |||||
* | Print less in test_socket. | Guido van Rossum | 1997-05-09 | 2 | -21/+6 |
| | |||||
* | Add root.tkraise() to the _test() program so the window doesn't hide | Guido van Rossum | 1997-05-09 | 2 | -0/+2 |
| | | | | behind the shell window on NT. | ||||
* | The usual. | Guido van Rossum | 1997-05-08 | 20 | -172/+564 |
| | |||||
* | Improve getting the mailbox from the environment. | Guido van Rossum | 1997-05-08 | 1 | -5/+5 |
| | |||||
* | Set correct RFC number. | Guido van Rossum | 1997-05-08 | 1 | -1/+1 |
| | |||||
* | Set correct RFC number. Open input in binary. | Guido van Rossum | 1997-05-08 | 1 | -2/+2 |
| | |||||
* | Misc.__init__(): Removed method, replaced with class attribute (which | Fred Drake | 1997-05-03 | 2 | -8/+2 |
| | | | | | | was all that the method set anyway). Removed calls to the constructor. This reduces the number of Python function calls per widget construction by one, for every widget construction. | ||||
* | Adding Jeremy Hylton's gzip module. | Guido van Rossum | 1997-04-30 | 1 | -0/+264 |
| | | | | | This requires Andrew Kuchling's zlib extension module. It still needs some doc strings. | ||||
* | Transformed comments to doc strings. | Guido van Rossum | 1997-04-29 | 1 | -34/+45 |
| | | | | Added symlinks option to copytree. | ||||
* | Reindented at 4 spaces. | Guido van Rossum | 1997-04-29 | 1 | -49/+49 |
| | |||||
* | Add feature to copy(), copy2(): dst may be a directory. | Guido van Rossum | 1997-04-29 | 1 | -22/+27 |
| | | | | | Remove unneeded check for '.' / '..' from copytree(). Add some comments. | ||||
* | Improvements to copyfile(): open the files in binary mode, and close | Guido van Rossum | 1997-04-29 | 1 | -6/+16 |
| | | | | them in a finally clause. | ||||
* | Restore two features of the original 1.4 pickle: | Guido van Rossum | 1997-04-25 | 1 | -5/+6 |
| | | | | | | - which_module() search __main__ last; - load_inst() no longer checks that the classname really refers to a class. | ||||
* | Alas, I have to restore 'marshal', since it is needed by the new | Guido van Rossum | 1997-04-25 | 1 | -2/+1 |
| | | | | | cPickle-compatible pickle, and pickle must be importable in restricted mode. I guess I'll have to make marshal safe. | ||||
* | Change inspired by Tommy Burnette to add an interface to get stderr, too. | Guido van Rossum | 1997-04-21 | 1 | -4/+19 |
| | |||||
* | Fix a couple of glitches identified by Greg Stein. | Fred Drake | 1997-04-18 | 1 | -4/+3 |
| | |||||
* | _safe_repr(): Make the context parameter required; ok since it's only for | Fred Drake | 1997-04-16 | 1 | -10/+9 |
| | | | | | internal use. Make sure the maxlevels and level parameters get passed to recursive invocations. | ||||
* | Muchly changed and improved pprint.py: | Fred Drake | 1997-04-16 | 1 | -110/+167 |
| | | | | | | | - handles recursive data structures - formatting based on a PrettyPrinter object - allows a maximum nesting depth to be specified - provides safe repr()-like function which does not pretty-print | ||||
* | spliturl() should not throw away everything past first newline | Guido van Rossum | 1997-04-16 | 1 | -2/+4 |
| | |||||
* | Reindented with 4 spaces. | Guido van Rossum | 1997-04-16 | 1 | -816/+813 |
| | |||||
* | Rewrite parsesequence() to emulate MH without invoking pick. | Guido van Rossum | 1997-04-16 | 1 | -38/+132 |
| | | | | Test it extensively by using pick. | ||||
* | Checking in a copy of Fred Drake's data structure pretty-printer | Guido van Rossum | 1997-04-16 | 1 | -0/+143 |
| | | | | | | | | | | (with some slight formatting changes). Feature requests: - Make it a class (everything should be a class); - support recursive data structures (like pp.py on the ftp contrib site). | ||||
* | Use uuencoded test images. | Guido van Rossum | 1997-04-16 | 4 | -9/+1579 |
| | |||||
* | Soft failure for Win32 and Mac platforms. Less output unless verbose. | Guido van Rossum | 1997-04-16 | 1 | -3/+12 |
| | |||||
* | Soft failure for Win32 platform. | Guido van Rossum | 1997-04-16 | 1 | -0/+4 |
| | |||||
* | No need to define assert, it's built in. | Guido van Rossum | 1997-04-16 | 1 | -2/+2 |
| | |||||
* | Patch by Craig McPheeters to clean up the back-references to widgets | Guido van Rossum | 1997-04-14 | 2 | -4/+46 |
| | | | | contained in commands created by those same widgets. | ||||
* | Remove Digital Creations copyright (Jim sez it's okay). | Guido van Rossum | 1997-04-11 | 1 | -53/+0 |
| | |||||
* | Catch and report ValueError raised by strftime. | Guido van Rossum | 1997-04-11 | 1 | -4/+16 |
| | |||||
* | (Jack+Guido:) interpret ../ in basejoin() according to RFC1808. | Guido van Rossum | 1997-04-11 | 1 | -0/+7 |
| | |||||
* | Open files in binary mode. | Guido van Rossum | 1997-04-11 | 1 | -4/+4 |
| | |||||
* | (Jack:) Better MacOS support. | Guido van Rossum | 1997-04-11 | 1 | -0/+10 |
| | |||||
* | (Jack:) Recognize PNG files. | Guido van Rossum | 1997-04-11 | 1 | -0/+12 |
| | |||||
* | From: Clarence Gardner <clarence@king.silcom.com> | Guido van Rossum | 1997-04-11 | 1 | -2/+2 |
| | | | | | | The function parse_qs currently calls urllib.unquote on the value of the field submitted, but not on the name. It needs to do both. | ||||
* | base64 support by Sjoerd. | Guido van Rossum | 1997-04-11 | 1 | -11/+25 |
| | |||||
* | Use uuencoded test images. | Guido van Rossum | 1997-04-09 | 7 | -166/+3333 |
| | |||||
* | Don't just die when an error is not defined; print a warning instead. | Guido van Rossum | 1997-04-09 | 1 | -4/+9 |
| | | | | This for errno-challenged platforms like Windows. | ||||
* | Try calling getpid() from /usr/lib/libc.so instead of some other | Guido van Rossum | 1997-04-09 | 1 | -4/+1 |
| | | | | random things. | ||||
* | Use TESTFN instead of /etc/passwd and /dev/null as test files. | Guido van Rossum | 1997-04-09 | 1 | -5/+12 |
| | |||||
* | support module for cPickle | Guido van Rossum | 1997-04-09 | 1 | -0/+17 |
| | |||||
* | New version by Digital Creations, supports binary format compatible | Guido van Rossum | 1997-04-09 | 1 | -427/+785 |
| | | | | with cPickle. | ||||
* | Ping's latest. Fixes triple quoted strings ending in odd | Guido van Rossum | 1997-04-09 | 1 | -20/+31 |
| | | | | #backslashes, and other stuff I don't know. | ||||
* | while (1) -> while 1. Sorry. | Guido van Rossum | 1997-04-08 | 1 | -1/+1 |
| | |||||
* | Search for a valid begin line instead of requiring the first line. | Guido van Rossum | 1997-04-08 | 1 | -9/+16 |
| | |||||
* | Ka-Ping's muich improved version of March 26, 1997: | Guido van Rossum | 1997-04-08 | 1 | -74/+98 |
| | | | | | | # Ignore now accepts \f as whitespace. Operator now includes '**'. # Ignore and Special now accept \n or \r\n at the end of a line. # Imagnumber is new. Expfloat is corrected to reject '0e4'. | ||||
* | Whole lotta changes. | Guido van Rossum | 1997-04-02 | 52 | -434/+2276 |
| | |||||
* | Changed my mind on replace(). | Guido van Rossum | 1997-04-02 | 2 | -24/+4 |
| | | | | | | It's now replace(str, old, new, maxsplit=0). Note new ordering of parameters (string first); this is more consistent with translate(). |