Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | choose_boundary(): This no longer uses random, so stop importing it. | Tim Peters | 2003-06-15 | 1 | -1/+0 |
| | |||||
* | choose_boundary(): Incorporated a threadsafe incrementing counter, so that | Tim Peters | 2003-06-15 | 1 | -8/+22 |
| | | | | | | | | unique boundary strings within a program run are guaranteed. On Windows, duplicates were pretty likely, due to the coarse granularity of time.time. Toned down the absurdly optimistic claims in the docstring. Bugfix candidate. | ||||
* | Massive changes from SF 589982 (tempfile.py rewrite, by Zack | Guido van Rossum | 2002-08-09 | 1 | -2/+2 |
| | | | | | Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones. | ||||
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -2/+2 |
| | |||||
* | os was already imported in the module, no need to re-import | Neal Norwitz | 2002-03-26 | 1 | -1/+0 |
| | |||||
* | Only AttributeError can be raised in this situation - on systems without | Skip Montanaro | 2002-03-23 | 1 | -2/+2 |
| | | | | | getuid or getpid. posix_getuid & posix_getpid never raise exceptions when called with no args. | ||||
* | Do not hide a failure to create a temporary file; if it fails the work | Fred Drake | 2001-02-23 | 1 | -5/+1 |
| | | | | | | | will not have been done, and applications need to know that. Also, do not print a message about it; the exception is the right thing. This closes SF bug #133717. | ||||
* | added a few more __all__ lists | Skip Montanaro | 2001-01-25 | 1 | -0/+2 |
| | | | | test___all__.py: fail silently in check_all if the module can't be imported | ||||
* | Whitespace normalization. | Tim Peters | 2001-01-14 | 1 | -176/+176 |
| | |||||
* | Get rid of string functions. | Guido van Rossum | 2000-12-15 | 1 | -15/+14 |
| | |||||
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 1 | -3/+3 |
| | | | | | Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects. | ||||
* | Return after writing 7bit or 8bit encodings. Closes bug 115712 | Martin v. Löwis | 2000-09-30 | 1 | -2/+2 |
| | |||||
* | Skip Montanaro submits a simple patch that makes encode() and decode() | Guido van Rossum | 2000-04-04 | 1 | -0/+4 |
| | | | | recognize the '7bit' and '8bit' encodings, to simplify use. | ||||
* | More trivial comment -> docstring transformations by Ka-Ping Yee, | Guido van Rossum | 2000-02-04 | 1 | -12/+13 |
| | | | | | | | | | | | | | | | | | | who writes: Here is batch 2, as a big collection of CVS context diffs. Along with moving comments into docstrings, i've added a couple of missing docstrings and attempted to make sure more module docstrings begin with a one-line summary. I did not add docstrings to the methods in profile.py for fear of upsetting any careful optimizations there, though i did move class documentation into class docstrings. The convention i'm using is to leave credits/version/copyright type of stuff in # comments, and move the rest of the descriptive stuff about module usage into module docstrings. Hope this is okay. | ||||
* | Use random instead of whrandom. | Guido van Rossum | 1998-05-20 | 1 | -2/+2 |
| | |||||
* | Avoid using the obsolete rand module; and improve the randomness | Guido van Rossum | 1998-04-11 | 1 | -4/+3 |
| | | | | | of the boundary chosen by choose_boudary() by using milliseconds of the timestamp. | ||||
* | Support uue and x-uue as short names for uuencode. | Guido van Rossum | 1997-12-10 | 1 | -2/+6 |
| | |||||
* | Use the modules base64, quopri, and uu, instead of external programs | Guido van Rossum | 1997-07-11 | 1 | -2/+22 |
| | | | | to decode/encode the standard transfer encodings. | ||||
* | Added getparamnames() to Message class -- return a list of all | Guido van Rossum | 1996-10-04 | 1 | -0/+8 |
| | | | | parameters of the content-type header. | ||||
* | Don't die when getuid() or getpid() aren't defined. | Guido van Rossum | 1996-08-26 | 1 | -2/+8 |
| | |||||
* | removed unused globals | Guido van Rossum | 1996-05-28 | 1 | -1/+1 |
| | |||||
* | add missing loop step to parseplist() | Guido van Rossum | 1996-01-25 | 1 | -0/+1 |
| | |||||
* | forget previous change (content-encoding) | Guido van Rossum | 1995-08-29 | 1 | -2/+1 |
| | |||||
* | encoding can be content-transfer-encoding or content-encoding | Guido van Rossum | 1995-08-29 | 1 | -1/+2 |
| | |||||
* | add seekable option to __init__ | Guido van Rossum | 1995-08-07 | 1 | -2/+2 |
| | |||||
* | Merge alpha100 branch back to main trunk | Guido van Rossum | 1994-08-01 | 1 | -2/+76 |
| | |||||
* | * Mass change: get rid of all init() methods, in favor of __init__() | Guido van Rossum | 1993-12-17 | 1 | -3/+2 |
| | | | | | | | constructors. There is no backward compatibility. Not everything has been tested. * aiff.{py,doc}: deleted in favor of aifc.py (which contains its docs as comments) | ||||
* | * More changes due to stricter argument passing rules | Guido van Rossum | 1993-01-04 | 1 | -1/+1 |
| | | | | | | * Fixed calendar.py, mimetools.py, whrandom.py to cope with time.time() returning a floating point number. (And fix old bug in calendar) * Add recursion level to mainloop.mainloop(), to make it reentrant. | ||||
* | New modules mimetools and rfc822. | Guido van Rossum | 1992-07-13 | 1 | -0/+113 |
Minor, minor changes to commands.py and sndhdr.py. |