summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Declare errno, for prehistoric systems.Guido van Rossum1991-06-041-0/+1
|
* *** empty log message ***Guido van Rossum1991-06-045-135/+164
|
* Expoer "marshal" module.Guido van Rossum1991-06-041-0/+3
|
* Export newcodeobject() interface.Guido van Rossum1991-06-041-0/+1
|
* Export float_buf_repr() interface, for marshalling of floats.Guido van Rossum1991-06-041-1/+1
|
* Initial revisionGuido van Rossum1991-06-042-0/+373
|
* 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
|
* Added popen().Guido van Rossum1991-06-041-1/+37
| | | | Added getmtime() function for use by ".pyc" processing.
* 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
|
* In support of popen(), file objects are now parametrized with a closeGuido van Rossum1991-06-041-11/+32
| | | | | | function on creation. (There's a funny thing about the return value of the close function that should be resolved.) Also added 'isatty' method.
* Remove test for unimplemented sq_repeat method (see tupleobject comments)Guido van Rossum1991-06-041-4/+0
|
* Fix comments in string_as_sequenceGuido van Rossum1991-06-041-7/+7
|
* Finally implement tuple*number. From now on all sequence typesGuido van Rossum1991-06-041-1/+33
| | | | | | must (pretend to) support all operations except assignments; if you don't want to support an operation you have to provide a dummy function that raises an exception...
* Removed utimes() compatibility hack.Guido van Rossum1991-06-031-1/+165
| | | | Added _exit, exec, fork, getpid, getppid, kill and wait.
* Don't print the line number for syntax errors in string parsing.Guido van Rossum1991-06-031-0/+3
|
* Added declarations for dnewlongobject and dgetlongvalue.Guido van Rossum1991-06-031-0/+2
|
* Added dnewlongobject(), function to convert double to long int.Guido van Rossum1991-06-031-0/+39
|
* Fix conversion of double to long; stylistic changes.Guido van Rossum1991-06-031-3/+3
|
* Don't suppress wsetfont("");Guido van Rossum1991-06-031-28/+47
| | | | | | Don't report WE_MENU events with None as menu pointer; Added stdwin.getactie() function; Moved code to turn WINDOW* into windowobject* to a separate function.
* Call clearerr() after EOF seen.Guido van Rossum1991-06-031-0/+1
|
* Fix off-by-one error in long_repr.Guido van Rossum1991-05-281-5/+50
| | | | Implement long_pow.
* Fix special cases in pow()Guido van Rossum1991-05-281-0/+12
|
* Added text.setactive and text.setview.Guido van Rossum1991-05-281-5/+37
| | | | Moved some functions around.
* Initial revisionGuido van Rossum1991-05-142-0/+408
|
* *** empty log message ***Guido van Rossum1991-05-144-16/+24
|
* *** empty log message ***Guido van Rossum1991-05-144-20/+12
|
* Added xor functions.Guido van Rossum1991-05-141-9/+46
| | | | Hide/show focus hacks around tedraw are no longer needed.
* Added nonzero to number methodsGuido van Rossum1991-05-141-0/+1
|
* Many small changesGuido van Rossum1991-05-141-17/+48
|
* Added wdigit and stwodigits typedefs, and changed prototypes.Guido van Rossum1991-05-141-6/+5
|
* Added nonzero testGuido van Rossum1991-05-141-0/+8
|
* Added nonzero testGuido van Rossum1991-05-141-0/+8
|
* 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
|
* Added recognition of 'l' or 'L' as long integer suffixGuido van Rossum1991-05-051-16/+23
|
* Include sys/select.h for IBM R2Guido van Rossum1991-05-051-0/+5
|
* Defined path delimiter for MS-DOS as semicolonGuido van Rossum1991-05-051-0/+4
|
* Added many new functionsGuido van Rossum1991-05-051-10/+71
|
* Added divmod and abs methods for numbersGuido van Rossum1991-05-051-0/+2
|
* Enabled (and fixed) newvarobject()Guido van Rossum1991-05-051-5/+1
|
* Initial revisionGuido van Rossum1991-05-053-0/+1001
|
* Added divmod and abs, fixed negative powersGuido van Rossum1991-05-051-18/+70
|
* Pre-define MS-DOS separatorGuido van Rossum1991-05-051-0/+4
|
* Added (dummy) divmod and (functional) abs.Guido van Rossum1991-05-051-10/+37
| | | | Fixed comments in number methods list
* Added long integer support.Guido van Rossum1991-05-051-0/+4
|
* Renamed class members to instances and class methods to instance methodsGuido van Rossum1991-05-051-6/+6
| | | | ,.
* Renamed class methods to instance methods (which they are)Guido van Rossum1991-05-052-64/+64
|
* 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().