summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Redesigned option processing and added several new options.Guido van Rossum1992-08-211-110/+207
| | | | | Added optional read-ahead thread. Changed mouse interface.
* Add audio recordingGuido van Rossum1992-08-201-1/+47
|
* Added method to write image files.Jack Jansen1992-08-201-0/+68
|
* New files.Guido van Rossum1992-08-201-4/+8
|
* new Vtime.py: manipulate time codes.Guido van Rossum1992-08-201-0/+117
|
* Lots of changes, options (from Vtime.py) etc.Guido van Rossum1992-08-201-58/+143
| | | | Cleverer skipping of frames.
* Added reopen() to VinFile with semantics of old rewind(); rewind() nowGuido van Rossum1992-08-201-8/+23
| | | | | | | | saves the cache. Added getinfo() to VoutFile. Fixed writing of 'grey' file header. Added quiet parameter. Adapted to new syntax.
* Minor improvements: exit status, data size stats.Guido van Rossum1992-08-201-7/+23
|
* Initial revisionGuido van Rossum1992-08-201-0/+217
|
* Use \input instead of \include (or \inclide)Guido van Rossum1992-08-192-2/+4
|
* splitfields(s, '') is illegalGuido van Rossum1992-08-192-2/+10
|
* Module getattr doesn't exist any more, it's now called newdir.Guido van Rossum1992-08-191-2/+2
|
* * renamed malloc.h mymalloc.h, and added MALLARG as the type of theGuido van Rossum1992-08-194-3/+83
| | | | | | | | argument to malloc() (size_t or unsigned int) * listobject.c: check for overflow of the size of the object, so things like range(0x7fffffff) will raise MemoryError instead of calling malloc() with -4 (and then crashing -- malloc's fault)
* rearranged modules alphabeticallyGuido van Rossum1992-08-191-38/+47
|
* unpack() now returns a tuple, not a listGuido van Rossum1992-08-191-1/+23
|
* don't call gl.foreground and create a new window after all (seems toGuido van Rossum1992-08-191-4/+0
| | | | break window positions in .Xdefaults)
* fix *serious* (new) bug in testbool: by default objects should testGuido van Rossum1992-08-191-1/+1
| | | | true, not false!!!
* added getname, getdefault and getminmax functionsGuido van Rossum1992-08-191-0/+43
|
* fix *serious* (new) bug in evalfile: forgot to initialize s!!!Guido van Rossum1992-08-191-0/+1
|
* Minor improvements, comments; fix Vinfo -d.Guido van Rossum1992-08-184-25/+59
|
* Add commentsGuido van Rossum1992-08-181-3/+50
|
* Add comments and optionsGuido van Rossum1992-08-182-18/+151
|
* Add close() method to VinFileGuido van Rossum1992-08-181-1/+5
|
* Added some new comments and filesGuido van Rossum1992-08-181-3/+25
|
* Hacked in audio support.Guido van Rossum1992-08-181-8/+55
|
* Initial revisionGuido van Rossum1992-08-181-0/+124
|
* Change window title: prefix '* ' means playing.Guido van Rossum1992-08-181-2/+2
|
* Adapt to new syntax and don't print garbage on self.close().Guido van Rossum1992-08-181-4/+4
|
* Initial revisionGuido van Rossum1992-08-182-0/+95
|
* New thread.c from Sjoerd, supports _exit_prog(). Use this in goaway()Guido van Rossum1992-08-175-91/+252
| | | | to avoid hanging in cleanup().
* struct: pack/unpack binary structs; fcntl: fcntl(), ioctl().Guido van Rossum1992-08-172-0/+593
|
* use getargs() in more cases;Guido van Rossum1992-08-141-63/+48
| | | | oct(0) should return '0', not '00'
* oct(0) should return '0', not '00'Guido van Rossum1992-08-141-2/+4
|
* check for embedded \0 in strings for z and s formatsGuido van Rossum1992-08-141-2/+13
|
* * macmodule.c: include allobjects.h, not .cGuido van Rossum1992-08-142-5/+9
| | | | | | * timemodule.c: the mac has no unistd.h * classobject.c: fixed several cases of return NULL that should be return -1 !!!
* * classobject.[ch], {float,long,int}object.c, bltinmodule.c:Guido van Rossum1992-08-147-93/+123
| | | | | | coercion is now completely generic. * ceval.c: for instances, don't coerce for + and *; * reverses arguments if left one is non-instance numeric and right one sequence.
* * xxobject.c: added tp_as_number, tp_as_sequence, tp_as_mapping toGuido van Rossum1992-08-141-6/+9
| | | | the type object.
* Added chapter titles in commentsGuido van Rossum1992-08-142-16/+16
|
* Fixed botched lay-out in class exampleGuido van Rossum1992-08-142-2/+4
|
* Moved chapters each to their own file.Guido van Rossum1992-08-142-5474/+18
| | | | | | Real changes: (a) added section on special class methods. (b) corrected typos spotted by Stoffel Erasmus.
* Initial revisionGuido van Rossum1992-08-146-0/+1846
|
* Initial revisionGuido van Rossum1992-08-1410-0/+3908
|
* Fix bug introduced by Jack (duplicate def of qread)Guido van Rossum1992-08-131-1/+1
|
* Modified to allow other threads to run in a multithreaded environment.Jack Jansen1992-08-134-1/+63
|
* Dumped \cbstart, \cbendGuido van Rossum1992-08-131-4/+0
|
* Initial revisionGuido van Rossum1992-08-137-0/+488
|
* Changes so that user-defined classes can implement operations invokedGuido van Rossum1992-08-125-42/+609
| | | | | by special syntax: you can now define your own numbers, sequences and mappings.
* DO_TIMES must now be defined in the MakefileGuido van Rossum1992-08-121-4/+0
|
* Made module regex optional; added optional module nis.Guido van Rossum1992-08-121-2/+14
|
* To ignore a call, cast it to (void), not to (void *)...Guido van Rossum1992-08-121-1/+1
|