summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* 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
* introduce a new platform-specific variable: os.linesep is theGuido van Rossum1998-05-221-0/+5
* Address some gcc -Wall warnings (e.g. include <ctype.h>).Guido van Rossum1998-05-221-29/+54
* Change the last 4-space indent into a 1-tab indent.Guido van Rossum1998-05-221-1/+1
* Shouldn't use newdir.dir(), which no longer exists!Guido van Rossum1998-05-221-2/+1
* I think there was a tiny bug in new_function() -- the 'defaults'Guido van Rossum1998-05-221-1/+1
* Add PyErr_PrintEx and PySequence_Contains.Guido van Rossum1998-05-221-0/+2
* Make function objects somewhat mutable -- the members func_code,Guido van Rossum1998-05-221-3/+35
* PySequence_In() -> PySequence_Contains().Guido van Rossum1998-05-221-1/+1
* Make sure that no use of a function pointer gotten from aGuido van Rossum1998-05-221-3/+5
* In PyObject_IsTrue(), don't call function pointers that are NULLGuido van Rossum1998-05-221-3/+6
* Moved cmp_member() to abstract.c, as PySequence_Contains() [withGuido van Rossum1998-05-221-53/+2
* A bunch of functions are now properly implemented in abstract.c, andGuido van Rossum1998-05-221-356/+40
* Renamed PySequence_In() to PySequence_Contains().Guido van Rossum1998-05-221-1/+2
* Completely reformatted, standardizing indentation as well asGuido van Rossum1998-05-221-582/+900
* knownfiles: Add the default installation dirs for ApacheFred Drake1998-05-211-0/+2