summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Eh, better error message for the previous change. It now saysGuido van Rossum1998-10-021-1/+1
* Treat def f(a, b=1, c): ... as an error (missing default for c)Guido van Rossum1998-10-021-7/+4
* Renamed thread.h to pythread.h.Guido van Rossum1998-10-011-15/+15
* Renamed thread.h to pythread.h.Guido van Rossum1998-10-014-4/+4
* On second though, NEXITFUNCS should be defined here and not inGuido van Rossum1998-10-011-1/+1
* builtin_apply(): Second argument type check is relaxed to allow any sequence.Barry Warsaw1998-10-011-6/+18
* While scalling sys.modules, skip entries that don't have string keys,Guido van Rossum1998-10-011-4/+4
* In FreeBSD when using ELF, an underscore is needed in front of theGuido van Rossum1998-09-301-1/+1
* Remove redundant definition of NEXITFUNCS.Guido van Rossum1998-09-281-1/+1
* Several changes that Python carry on in the face of errors in theBarry Warsaw1998-09-141-26/+61
* Mac-specific mod to enable aliases on import paths.Guido van Rossum1998-09-142-9/+35
* Apparently on AIX when using gcc you need to call pthread_init()Guido van Rossum1998-09-101-0/+3
* Correct typo in #ifdef: PY_THREAD_D4, should be PY_PTHREAD_D4.Guido van Rossum1998-09-041-1/+1
* Should no longer surround PyOS_Readline() call withGuido van Rossum1998-09-031-4/+0
* Add a 'volatile' to the declaration of threadid in get_thread_ident().Guido van Rossum1998-08-271-1/+1
* Don't release the interpreter lock around PyParser_ParseFile().Guido van Rossum1998-08-271-4/+0
* __file__ used to be always set to the .pyc (or .pyo) file, even ifGuido van Rossum1998-08-251-1/+2
* Comment out the print statement about underflow. (This only seems toGuido van Rossum1998-08-251-2/+2
* Add the type of the object to the error message about calling a non-function.Guido van Rossum1998-08-251-3/+5
* Restructure the file so that it is never empty. No longer needsGuido van Rossum1998-08-251-10/+10
* Patch by Mark Hammond to support 64-bit ints on MS platforms.Guido van Rossum1998-08-252-7/+7
* Ted Horst writes in psa-members@python.org:Guido van Rossum1998-08-241-0/+41
* Add DebugBreak() call to Py_FatalError() for Mark Hammond (only onGuido van Rossum1998-08-131-0/+3
* Patch by Just van Rossum that changes how we search for submodules ofGuido van Rossum1998-08-111-19/+20
* # Fix strange type (methonname instead of methodname).Guido van Rossum1998-08-081-4/+4
* Added declarations for Mac code resource modules (Jack Jansen).Guido van Rossum1998-08-061-1/+2
* Added handling for Mac code resource modules (Jack Jansen).Guido van Rossum1998-08-061-0/+10
* Gack. The module doc string is too long for VC++ 5.0.Guido van Rossum1998-08-061-2/+5
* Make getversion.o dependent on ../Include/patchlevel.h as well.Fred Drake1998-08-051-1/+1
* Changes for BeOS, QNX and long long, by Chris Herborth.Guido van Rossum1998-08-047-1/+331
* In BUILD_LIST, use PyList_SET_ITEM() instead of PyList_SetItem(); andGuido van Rossum1998-08-041-3/+1
* PyErr_SetFromErrnoWithFilename(): New function which supports settingBarry Warsaw1998-07-231-2/+14
* Added support for two new standard errors: EnvironmentError andBarry Warsaw1998-07-231-5/+16
* Small changes to map() and filter():Guido van Rossum1998-07-101-5/+8
* # In case BINARY_SUBSCR, use proper PyList_GET* macros instead of inlining.Guido van Rossum1998-07-081-3/+3
* Marc-Andre Lemburg's patch to support instance methods with otherGuido van Rossum1998-07-081-0/+5
* Reindented some OS/2 and hpux code that looked ugly or at leastGuido van Rossum1998-07-081-29/+28
* Two error messages still used the old name of the functio mkvalue() --Guido van Rossum1998-07-071-2/+2
* Sigh. The hack to enable special treatment for errno on SGI machinesGuido van Rossum1998-07-071-0/+4
* Fix two smal memory leaks discovered by Vadim Chugunov.Guido van Rossum1998-07-011-3/+2
* Fix a stupid little bug: len() of an unsized returns -1 and leaves anGuido van Rossum1998-06-291-1/+5
* Experimental feature: add default argument to getattr().Guido van Rossum1998-06-291-5/+13
* Windows-specific hack to make sure that when LoadLibrary() is called,Guido van Rossum1998-06-271-0/+22
* Added doc strings. Maybe the doc string for the module itself is a bitGuido van Rossum1998-06-271-7/+102
* Added doc strings.Guido van Rossum1998-06-261-52/+432
* In raw_input(prompt), make sure that str(prompt) really a stringGuido van Rossum1998-06-261-0/+2
* Ignore Windows case check for ALL CAPS 8.3 filesGuido van Rossum1998-06-241-1/+39
* When unmarshalling, add test for negative lengths on strings, tuplesGuido van Rossum1998-06-081-2/+14
* Remove a few unused locals (I love VC++ for this!).Guido van Rossum1998-05-291-2/+0
* Moved cmp_member() to abstract.c, as PySequence_Contains() [withGuido van Rossum1998-05-221-53/+2