summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* 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
* Patch by Lars Marius Garshol:Guido van Rossum1998-05-281-2/+30
* Guard against changes in the list size during a compare or sort.Guido van Rossum1998-05-281-22/+31
* Some systems (e.g. Linux) use enums for some symbols (like IPPROTO_IP)Guido van Rossum1998-05-281-0/+11
* Uses PyErr_ExceptionMatches() instead of comparing PyErr_Occurred().Guido van Rossum1998-05-281-1/+1
* Uses PyErr_ExceptionMatches() instead of comparing PyErr_Occurred().Guido van Rossum1998-05-281-1/+1
* For ControlWindow there is a new method do_rawcontrolhit(), which getsJack Jansen1998-05-281-14/+36
* Allow an (optional) tracking function (or -1) to be specified toJack Jansen1998-05-283-41/+166
* get_long(): Use PyErr_ExceptionMatches(...) instead of PyErr_Occurred(...).Fred Drake1998-05-281-1/+1
* t_bootstrap(): Use PyErr_ExceptionMatches(...) instead of PyErr_Occurred(...).Fred Drake1998-05-281-1/+1
* Use PyErr_ExceptionMatches(...) instead of PyErr_Occurred() == ... in twoFred Drake1998-05-281-2/+4
* add handler for JPython's org.python.core.PyStringMap object, whichJeremy Hylton1998-05-271-0/+7
* Fix some comments; move 'import random' to top.Guido van Rossum1998-05-261-13/+9
* On SGI, we need to define _SGI_MP_SOURCE before including errno.h whenGuido van Rossum1998-05-261-0/+4
* Tim's quicksort on May 25.Guido van Rossum1998-05-261-123/+141
* Add Tim's worst case scenario.Guido van Rossum1998-05-261-6/+11
* Added some tests to make sure that long->int conversions nearGuido van Rossum1998-05-261-0/+12
* Subject: Buglet in PyLong_AsLongGuido van Rossum1998-05-261-9/+19
* Replaced the VC++ 5.x instructions with a pointer to ../PCbuild.Guido van Rossum1998-05-261-17/+3
* Moved VC++ 5.x files to ../PCbuild.Guido van Rossum1998-05-268-1172/+0
* Moved VC++ 5.x stuff here.Guido van Rossum1998-05-269-4/+1200
* Mark Hammond writes:Guido van Rossum1998-05-261-17/+13
* Don't die if win32api doesn't exist.Guido van Rossum1998-05-261-1/+6
* Fix a dumb typo in the revparse() regular exception: {1-4} should be {1,4}.Guido van Rossum1998-05-221-1/+1
* Document missing functions: xor, not, truth, countOf, indexOf, andGuido van Rossum1998-05-221-0/+28
* Use a different implementation of EventHook(). The new versionGuido van Rossum1998-05-221-37/+74
* Minor grammatical correction: "This module perform ..." --> "This moduleFred Drake1998-05-221-1/+1
* Fixed spelling in comment: "RFC", not "RFX".Fred Drake1998-05-221-1/+1
* Add an alias (and preferred name) "contains" for "sequenceIncludes".Guido van Rossum1998-05-221-47/+34