| Commit message (Expand) | Author | Age | Files | Lines |
* | Give in to Timmy's Tedious Tab Theorem. | Guido van Rossum | 1998-03-23 | 1 | -1/+1 |
|
|
* | Give in to the tab police. | Guido van Rossum | 1998-03-20 | 6 | -285/+295 |
|
|
* | Fix indent of one line in mkarg(), that got indented badly by the | Guido van Rossum | 1998-03-19 | 1 | -1/+1 |
|
|
* | Add obvious needed else clause to format_exception(). | Guido van Rossum | 1998-03-18 | 1 | -0/+2 |
|
|
* | Prefer clock() over times() for timer function, except on the Mac, | Guido van Rossum | 1998-03-17 | 1 | -4/+7 |
|
|
* | As Mike Fletcher pointed out, a __deepcopy__() method should be called | Guido van Rossum | 1998-03-13 | 1 | -1/+1 |
|
|
* | Added support for "data" URL, by Sjoerd Mullender. | Guido van Rossum | 1998-03-12 | 1 | -0/+40 |
|
|
* | Instead of 'import mac', use 'import os' -- this way, the path syntax | Guido van Rossum | 1998-03-03 | 1 | -9/+9 |
|
|
* | Initialize adlist variable in getrouteaddr(), so an illegal address | Guido van Rossum | 1998-03-03 | 1 | -0/+1 |
|
|
* | Typo (coestring -> codestring) discovered by Mark Hammond. | Guido van Rossum | 1998-03-02 | 1 | -1/+1 |
|
|
* | Sjoerd writes: When a multipart message is incomplete, mimify crashes. | Guido van Rossum | 1998-02-27 | 1 | -0/+6 |
|
|
* | New version of tb_lineno(), this time *not* using try-except, to avoid | Guido van Rossum | 1998-02-26 | 1 | -8/+8 |
|
|
* | A working version of the 'args' command (it prints the current values | Guido van Rossum | 1998-02-25 | 1 | -5/+12 |
|
|
* | Add test for core dump -- make sure it doesn't come back! | Guido van Rossum | 1998-02-25 | 1 | -0/+5 |
|
|
* | Tweak the tb_lineno() function to be compatible with JPython, which | Guido van Rossum | 1998-02-25 | 1 | -4/+8 |
|
|
* | Typo: baseWidht -> baseWidth. | Guido van Rossum | 1998-02-24 | 1 | -1/+1 |
|
|
* | Fix bug in trace_vdelete(); should use master's delete command. | Guido van Rossum | 1998-02-19 | 1 | -1/+2 |
|
|
* | Added debug statements to report data actually sent and received on | Guido van Rossum | 1998-02-19 | 1 | -0/+2 |
|
|
* | Fix for literal null bytes -- these must be replaced by the four | Guido van Rossum | 1998-02-19 | 1 | -2/+3 |
|
|
* | Fixed a bug in the gauss() function. The bug was reported by Mike | Guido van Rossum | 1998-02-19 | 1 | -5/+6 |
|
|
* | Add rmd() (remove directory command); fix comment in parse257. | Guido van Rossum | 1998-02-19 | 1 | -2/+8 |
|
|
* | Faster implementation of normcase (using string.lower( | Guido van Rossum | 1998-02-19 | 1 | -8/+2 |
|
|
* | Feature added by Bill van Melle: when no timezone is present, assume | Guido van Rossum | 1998-02-19 | 1 | -7/+14 |
|
|
* | (1) Change normpath() to *not* also call normcase(). | Guido van Rossum | 1998-02-18 | 1 | -7/+7 |
|
|
* | Fix sign reversal in mktime_tz discovered by Bill van Melle. | Guido van Rossum | 1998-02-18 | 1 | -1/+1 |
|
|
* | Andrew Kuchling writes: | Guido van Rossum | 1998-02-16 | 1 | -1/+1 |
|
|
* | Adding output of test_xmllib.py | Guido van Rossum | 1998-02-13 | 1 | -0/+1 |
|
|
* | Fixed typo in docstring: "__ version__" --> "__version__" | Fred Drake | 1998-02-13 | 1 | -1/+1 |
|
|
* | Fix a horrible race condition -- various routines were storing the | Guido van Rossum | 1998-02-13 | 1 | -9/+7 |
|
|
* | Added rmtree(), to recursively remove a directory tree. | Guido van Rossum | 1998-02-06 | 1 | -0/+32 |
|
|
* | Two suggested features by Sjoerd: | Guido van Rossum | 1998-02-05 | 1 | -6/+7 |
|
|
* | (1) Use matchobj.groups(), not matchbj.group() to get all groups. | Guido van Rossum | 1998-02-05 | 1 | -4/+8 |
|
|
* | Make this test work when imported from the interpreter instead of run | Guido van Rossum | 1998-01-29 | 1 | -1/+6 |
|
|
* | Sez The Dragon: | Guido van Rossum | 1998-01-29 | 1 | -24/+25 |
|
|
* | SMTP client by The Dragon De Monsyne <dragondm@integral.org>. | Guido van Rossum | 1998-01-29 | 1 | -0/+278 |
|
|
* | New version of xmllib from Sjoerd. | Guido van Rossum | 1998-01-29 | 2 | -57/+187 |
|
|
* | (This fix is really by Jeremy) | Guido van Rossum | 1998-01-27 | 1 | -22/+29 |
|
|
* | Unpickler.load_inst(), Unpickler.load_obj(), Unpickler.load_build(): | Barry Warsaw | 1998-01-26 | 1 | -7/+28 |
|
|
* | get(): Fixed a bug in the merge order of the dictionaries. This makes | Barry Warsaw | 1998-01-26 | 1 | -3/+4 |
|
|
* | Revamped, to match py_compile.py: | Guido van Rossum | 1998-01-19 | 1 | -58/+97 |
|
|
* | Add Gopher to list of protocols that support query strings. | Guido van Rossum | 1998-01-19 | 1 | -0/+1 |
|
|
* | Fix bad new bug in ftp code -- the test for existing file using NLST | Guido van Rossum | 1998-01-19 | 1 | -0/+4 |
|
|
* | Fix to ismount(). Can't remember who told me this. | Guido van Rossum | 1998-01-19 | 1 | -2/+3 |
|
|
* | Patch by Tim O'Malley for servers that send a response looking just like | Guido van Rossum | 1998-01-19 | 1 | -2/+6 |
|
|
* | Some patches by Lars Marius Garshol: | Guido van Rossum | 1998-01-19 | 1 | -2/+17 |
|
|
* | Added docstrings. | Guido van Rossum | 1998-01-19 | 1 | -32/+63 |
|
|
* | Add trace methods to class Variable | Guido van Rossum | 1998-01-14 | 1 | -5/+15 |
|
|
* | Added tests for qualified sub and split | Guido van Rossum | 1998-01-14 | 1 | -0/+15 |
|
|
* | Seems I've found a way to fix this. | Guido van Rossum | 1998-01-14 | 1 | -3/+9 |
|
|
* | Update the doc string to emphasize non-Unix behavior earlier; | Guido van Rossum | 1998-01-13 | 1 | -7/+5 |
|
|