summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Jonathan Giddy:Guido van Rossum1998-06-121-1/+4
* With the recent change that makes numbers compare smaller than anything,Guido van Rossum1998-06-111-3/+3
* Now that test_MimeWriter is untabified, do the same here!Guido van Rossum1998-06-111-15/+15
* Add warning about use of lowercase/uppercase with maketrans().Guido van Rossum1998-06-111-0/+5
* Add timegm to list of functions tested, for Marc-Andre L.Guido van Rossum1998-06-113-3/+6
* Oops, bug in release date!Guido van Rossum1998-06-111-1/+1
* Be more careful than the previous patch. The default content-typeGuido van Rossum1998-06-111-1/+4
* Support new overridable method, isheader() (ESR).Guido van Rossum1998-06-111-24/+48
* Eric Raymond: added doc for isheader(); improved docs for constructor.Guido van Rossum1998-06-111-7/+18
* Document the changes I just checked in.Guido van Rossum1998-06-101-8/+39
* Some changes suggested/provided by Eric Raymond:Guido van Rossum1998-06-101-7/+52
* Document several variables that were previously undocumented,Guido van Rossum1998-06-101-9/+35
* Add the __doc__ string from the original module on copy_none().Guido van Rossum1998-06-091-1/+3
* Added notes about epochs, the year 2038, and a small Y2K disclaimerGuido van Rossum1998-06-091-4/+19
* Default content-type to application/x-www-form-urlencoded at the topGuido van Rossum1998-06-091-1/+1
* Changed runs of 8 spaces to tab -- to satisfy the tab nanny.Guido van Rossum1998-06-091-7/+7
* Untabified -- to satisfy the tab nanny.Guido van Rossum1998-06-092-230/+230
* Get rid of tabnanny's last complaints.Guido van Rossum1998-06-091-3/+3
* From: "Tim Peters" <tim_one@msn.com>Guido van Rossum1998-06-093-9/+27
* When comparing objects of different types (which is done by comparingGuido van Rossum1998-06-091-8/+15
* Added docs for strptime().Guido van Rossum1998-06-091-0/+12
* Added strptime, if it exists. Modified after a patch by Jesse Hallio.Guido van Rossum1998-06-091-10/+53
* Clarify the type of the signal handler.Guido van Rossum1998-06-091-1/+2
* Should check that PyObject_Str() really returned a string!Guido van Rossum1998-06-091-0/+5
* getint() now raises ValueError, not TclError, on errors.Guido van Rossum1998-06-091-2/+2
* Added a line to process SGI_ABI.Guido van Rossum1998-06-081-0/+1
* When unmarshalling, add test for negative lengths on strings, tuplesGuido van Rossum1998-06-081-2/+14
* Allow assignments to special class attributes -- with typechecks, andGuido van Rossum1998-05-291-12/+87
* A few minor updates on Emacs mode sectionBarry Warsaw1998-05-291-6/+6
* Remove the doc string -- it doesn't tell the truth.Guido van Rossum1998-05-291-13/+1
* New demo -- Perl style regular expression matching.Guido van Rossum1998-05-291-0/+183
* Say a bit more about .pyc and .pyo files.Guido van Rossum1998-05-291-5/+35
* Remove Emacs and #! cruft.Guido van Rossum1998-05-291-4/+0
* Improve the self-test code a bit: read a host from sys.argv[1] if set,Guido van Rossum1998-05-291-2/+8
* Tim's revision of the previous patch. He also added some sparts toGuido van Rossum1998-05-291-43/+35
* Add comments explaining thread unsafety of this code.Guido van Rossum1998-05-291-0/+10
* Make gauss() semi-thread-safe. It can still give duplicate results,Guido van Rossum1998-05-291-4/+14
* Two places where _time() should be used said time.time(), whichGuido van Rossum1998-05-291-2/+2
* Piers Lauders' latest version, with some of my own changes reapplied.Guido van Rossum1998-05-291-10/+31
* Fix a whole bunch of error return NULL that should be return -1.Guido van Rossum1998-05-291-5/+5
* Remove a few unused locals (I love VC++ for this!).Guido van Rossum1998-05-291-2/+0
* Sorry, the initializer for ob_type must really be NULL,Guido van Rossum1998-05-291-1/+1
* Quick fix -- define SIZEOF_LONG and SIZEOF_INT.Guido van Rossum1998-05-291-0/+4
* Moved from PCGuido van Rossum1998-05-291-0/+1214
* Moving to PCbuildGuido van Rossum1998-05-291-1214/+0
* On Windows, need #include <windows.h>; and it's MS_WINDOWS, not MS_WIN32.Guido van Rossum1998-05-291-2/+6
* Release the interpreter lock for calls that may block: _locking(),Guido van Rossum1998-05-291-2/+10
* Changes to make it possible to write multi-threaded programs usingGuido van Rossum1998-05-281-152/+390
* Protect all uses of the random generator with a lock.Guido van Rossum1998-05-281-8/+24
* An example of a multi-threaded Tkinter program.Guido van Rossum1998-05-281-0/+44