summaryrefslogtreecommitdiff
path: root/Python
Commit message (Collapse)AuthorAgeFilesLines
* Added getintintintarg() (3 int args)Guido van Rossum1991-07-011-0/+15
|
* Check for identical types before comparing objects to see if theyGuido van Rossum1991-07-011-1/+1
| | | | | are the same -- 0 and 0.0 compare equal but should be considered different here!
* Call coerce() in arithmetic operations, to support mixed mode arithmeticGuido van Rossum1991-07-011-12/+46
|
* Add and use coerce() routine for mixed mode arithmeticGuido van Rossum1991-07-011-17/+76
|
* Generalize to macintosh.Guido van Rossum1991-06-242-6/+2
|
* Don't use printobject() to print a string (filename).Guido van Rossum1991-06-241-7/+10
| | | | Print ';' instead of ',' between file and line for MPW.
* printobject now returns an error codeGuido van Rossum1991-06-072-6/+10
|
* printobject now returns an error codeGuido van Rossum1991-06-072-7/+12
|
* Add run_command() to implement "-c command".Guido van Rossum1991-06-071-9/+73
|
* Add marshalling for dictionaries.Guido van Rossum1991-06-071-1/+33
|
* Declare errno, for prehistoric systems.Guido van Rossum1991-06-041-0/+1
|
* Initial revisionGuido van Rossum1991-06-041-0/+340
|
* Changed and exported newcodeobject() interface, for ".pyc" files.Guido van Rossum1991-06-041-10/+9
|
* Added fclose to newopenfileobject() calls.Guido van Rossum1991-06-041-4/+4
|
* Support ".pyc" files: cached compilation results.Guido van Rossum1991-06-041-5/+72
| | | | (Similar to Emacs ".elc" files.)
* Removed Think C 3.0 stuff and wish list.Guido van Rossum1991-06-041-34/+1
|
* Remove test for unimplemented sq_repeat method (see tupleobject comments)Guido van Rossum1991-06-041-4/+0
|
* Fix conversion of double to long; stylistic changes.Guido van Rossum1991-06-031-3/+3
|
* Don't optimize <string> and <stdin> codeGuido van Rossum1991-05-141-1/+1
|
* Declare ticker as int; made testbool generic for all numeric typesGuido van Rossum1991-05-141-7/+5
|
* Defined path delimiter for MS-DOS as semicolonGuido van Rossum1991-05-051-0/+4
|
* Pre-define MS-DOS separatorGuido van Rossum1991-05-051-0/+4
|
* Added long integer support.Guido van Rossum1991-05-051-0/+4
|
* Renamed class methods to instance methods (which they are)Guido van Rossum1991-05-051-5/+5
|
* Added long() and support for longs in int() and float();Guido van Rossum1991-05-051-58/+72
| | | | | turned abs() and divmod() into generic versions; added pow().
* Initial revisionGuido van Rossum1991-04-161-0/+17
|
* Move allobjects.h to front (needed by THINK C precompiled headers)Guido van Rossum1991-04-161-2/+2
|
* BUGFIX! Instructions are unsigned bytes.Guido van Rossum1991-04-161-4/+4
|
* Use fileobject's filegetline() to implement unlimited raw_input().Guido van Rossum1991-04-041-19/+1
|
* Added isatty() for MPW.Guido van Rossum1991-04-041-0/+10
|
* Added error checking for numeric constants; added local/global variableGuido van Rossum1991-04-041-4/+112
| | | | optimization.
* Moved support functions after main function; added prototypes;Guido van Rossum1991-04-041-572/+617
| | | | | Fixed 'needspace' hack to use a flag in the stdout file object; added local and global variable lookup cases.
* Moved get*doublearg() routines here from mathmodule.cGuido van Rossum1991-04-031-0/+29
|
* Added forward declaration (to satisfy Standard C).Guido van Rossum1991-04-031-0/+3
|
* Create code string with initial size of 1000 instead of 0.Guido van Rossum1991-04-031-1/+1
|
* Define and use GETNAMEV macro.Guido van Rossum1991-04-031-2/+3
|
* Include patchlevel.h (to ensure it is distributed with the rest).Guido van Rossum1991-03-061-0/+2
|
* Added copyright notice.Guido van Rossum1991-02-1915-0/+360
|
* Added version that opens a pipe to /bin/pwd.Guido van Rossum1991-02-191-4/+47
|
* Call the init function of a built-in module here.Guido van Rossum1991-02-191-2/+31
| | | | ,
* Reversed min and max (to alphabetical order).Guido van Rossum1991-02-191-1/+1
|
* Fix bug in input(); add comments to cases in compile().Guido van Rossum1991-01-211-7/+6
|
* File name shortening.Guido van Rossum1991-01-212-2/+2
|
* Initial revisionGuido van Rossum1991-01-211-0/+35
|
* Return -1 for errors.Guido van Rossum1990-12-201-1/+1
|
* Changes for THINK C 4.0.Guido van Rossum1990-12-201-9/+11
| | | | Don't call inittime() and initmath(), let config_*.c decide about those.
* Changed include of <errno.h>Guido van Rossum1990-12-201-2/+5
|
* Change div() into divide(); div() is a Standard C function.Guido van Rossum1990-12-201-2/+2
|
* "Compiling" versionGuido van Rossum1990-12-2011-1308/+2229
|
* Empty all modules' symbol tables, so most circular references areGuido van Rossum1990-11-181-6/+41
| | | | | | cleared up. (A function definition references its module's symbol table but the symbol table of course references the function...)