summaryrefslogtreecommitdiff
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Rename DEBUG macro to Py_DEBUGGuido van Rossum1996-12-303-9/+9
* Moved the raise logic out of the main interpreter loop to a separate function.Guido van Rossum1996-12-101-60/+127
* Better way to handle 64-bit ints, keeping gcc -Wall happy.Guido van Rossum1996-12-101-30/+18
* Add unistd.h to make gcc -Wall happy.Guido van Rossum1996-12-101-0/+4
* Add const to error and newstring functionsGuido van Rossum1996-12-101-1/+1
* Keep gcc -Wall happy.Guido van Rossum1996-12-056-28/+38
* Support __complex__ method on instances, for complex() conversion.Guido van Rossum1996-12-051-1/+23
* Change the Don Beaudry hack into the Don B + Jim F hack; now, if *any*Guido van Rossum1996-12-051-28/+26
* Some extra flags that an HPUX user wants me to add.Guido van Rossum1996-12-051-2/+2
* Tentative changes to make this work better on 64-bit machines.Guido van Rossum1996-12-051-3/+66
* New permission notice, includes CNRI.Guido van Rossum1996-10-2538-495/+761
* Forget about Ellipses b/w compatibility.Guido van Rossum1996-10-161-2/+0
* Ellipses -> Ellipsis rename (the dictionary really says that it shouldGuido van Rossum1996-10-113-8/+10
* Sjoerd's thread changes (including down_sema typo fix).Guido van Rossum1996-10-088-18/+47
* Added line number to most compile-time error messages.Guido van Rossum1996-09-171-88/+90
* Rationalized MS ifdefsGuido van Rossum1996-09-113-18/+10
* Changes to setpythonpath():Guido van Rossum1996-09-101-4/+23
* Stupid bug: complex(x,y) would yield x+xjGuido van Rossum1996-09-071-1/+1
* *** empty log message ***Guido van Rossum1996-08-291-0/+26
* Needed more includes...Guido van Rossum1996-08-291-6/+3
* *** empty log message ***Guido van Rossum1996-08-291-0/+22
* typo (#indef -> #undef)Guido van Rossum1996-08-261-1/+1
* Afterthough: leave both leading underscores in,Guido van Rossum1996-08-241-5/+5
* Oops need to mangle global statement separatelyGuido van Rossum1996-08-241-0/+7
* Name mangling, what the heck!Guido van Rossum1996-08-241-3/+80
* Use MS_DLL_ID as sys.winverGuido van Rossum1996-08-231-2/+2
* PYTHONWIN -> MS_COREDLLGuido van Rossum1996-08-221-1/+1
* Add needed #include <ctype.h>Guido van Rossum1996-08-211-0/+2
* Add explicit #undef _POSIX_THREADS for use on Solaris 2.5 (Sjoerd).Guido van Rossum1996-08-211-0/+1
* Don't require <dlfcn.h> -- rely on existence of dlopen().Guido van Rossum1996-08-201-1/+3
* Always include config.hGuido van Rossum1996-08-196-12/+0
* Many little fixes:Guido van Rossum1996-08-191-3/+19
* getprogramname -> Py_GetProgramName.Guido van Rossum1996-08-191-2/+2
* Raise TypeError, not KeyError, on unknown keyword argument.Guido van Rossum1996-08-191-2/+1
* Added *PyMarshal_WriteObjectToString() (moved the relevant code thereGuido van Rossum1996-08-191-18/+25
* Support for keyword arguments (PyArg_ParseTupleAndKeywords) donated byGuido van Rossum1996-08-191-3/+383
* Don't test here for negative number to float power; that belongs inGuido van Rossum1996-08-161-9/+0
* Don't die in resizestring() on filter(<func>, "").Guido van Rossum1996-08-161-1/+1
* Disable support for access statementGuido van Rossum1996-08-123-589/+567
* Insert "./" in front of pathname when it contains no '/' (if USE_SHLIB)Guido van Rossum1996-08-091-0/+6
* Changes necessary for AIX.Guido van Rossum1996-08-081-0/+15
* Added casts from unsigned char to char when calling rds_object() onGuido van Rossum1996-08-081-2/+2
* Removed unused var; added error check for ``lambda: x=1''.Guido van Rossum1996-08-081-1/+5
* Include mymath.h instead of declaring prototypes for math functions.Guido van Rossum1996-08-081-5/+13
* Put definition of _REENTRANT in config.hGuido van Rossum1996-08-011-4/+0
* Changes for AIX sharedlibs.Guido van Rossum1996-07-311-14/+120
* If NO_DYNAMIC_LINK is defined, load_dynamic_module() will always fail.Guido van Rossum1996-07-311-0/+4
* Added _REENTRANT definitionGuido van Rossum1996-07-311-0/+4
* Always insert script directory in front of sys.path -- if there's noGuido van Rossum1996-07-301-17/+17
* Better error message if stride used on normal sequence objectGuido van Rossum1996-07-301-2/+10