summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* *** empty log message ***Guido van Rossum1992-09-241-0/+10
|
* Better way of deducing mcast group bytes.Guido van Rossum1992-09-241-8/+7
|
* Add -b option and sleep shorter.Guido van Rossum1992-09-241-9/+15
|
* open() now raises IOError, not RuntimeError!Guido van Rossum1992-09-241-1/+1
|
* New built-in module cl, the Compression Library.Sjoerd Mullender1992-09-231-0/+546
|
* New modules LiveVideo{In,Out} (interfaces will change!).Guido van Rossum1992-09-225-1/+320
| | | | | New programs V{send,receive} to send/receive video over UDP. Comment typo changed in Vaddcache.
* Vrec.py: sv now raises sv.error instead of RuntimeError.Guido van Rossum1992-09-222-8/+16
| | | | VFile.py: support for showing partial frames.
* __oct__ and __hex__Guido van Rossum1992-09-202-0/+10
|
* New module regsub contains sub(), gsub() and split() as in nawk.Guido van Rossum1992-09-204-6/+152
| | | | | string.splitfields(s, '') now returns [s] as split() in nawk. Added _exit to exported functions of os.
* * Makefile: added IMGFILE; moved some stuff around.Guido van Rossum1992-09-1711-142/+126
| | | | | | | | * flmodule.c: added some missing functions; changed readonly flags of some data members based upon FORMS documentation. * listobject.c: fixed int/long arg lint bug (bites PC compilers). * several: removed redundant print methods (repr is good enough). * posixmodule.c: added (still experimental) process group functions.
* posix: added setpgrp() and, if sgi, setsid() and setpgid(pid, pgid)Guido van Rossum1992-09-131-1/+59
|
* Made builtins int(), long(), float(), oct() and hex() more generic.Guido van Rossum1992-09-126-91/+193
|
* Makefile uses $> more often; cgen supports filename argument; addedGuido van Rossum1992-09-112-0/+113
| | | | lower, upper and swapcase to strop; cosmetics.
* Added C++ support in thread.h; don't use signals if not strictlySjoerd Mullender1992-09-113-15/+40
| | | | | necessary, and when they are, use SIGKILL; when compiled with -DDEBUG, only print debug messages when "THREADDEBUG" is set in the environment.
* Allow broadcast using setsockopt()Guido van Rossum1992-09-081-1/+2
|
* Initial revisionGuido van Rossum1992-09-081-0/+54
|
* Added mcast demoGuido van Rossum1992-09-081-0/+7
| | | | .,
* Utility to add a cached index to an existing movie file.Guido van Rossum1992-09-081-0/+79
|
* VFile: The Entry-Indigo trick doesn't work on 4.0.1 hosts.Guido van Rossum1992-09-082-16/+70
| | | | | VFile: RandomVinFile can now write the cache to the file. Vinfo: use the cached index if present and print a message whether it's there.
* Added post_mortem() and pm() interfaces to pdb and wdb.Guido van Rossum1992-09-086-4/+63
| | | | | | Added colorsys.py (color system conversions). SV.py: new version for new svideo.h (Sjoerd). DEVICE.py: added VIDEO event type.
* Added hint about changing the prompt in $PYTHONSTARTUPGuido van Rossum1992-09-082-0/+4
|
* Made struct a standard built-in module; added string args to {set,get}sockopt;Guido van Rossum1992-09-083-18/+63
| | | | added gl.gversion().
* Fixed "clear()" and added "clearto(r, g, b)".Guido van Rossum1992-09-071-29/+217
| | | | | | | Added class RandomVinFile which supports random access and warming the cache. Added eofseen and errorseen methods to BasicVinFile. Use RGB mode for rgb8 data on entry level Indigo. Minor cosmetic changes.
* Clear the window when receiving a REDRAW event and not playingGuido van Rossum1992-09-071-0/+2
|
* Use vin/vout.clear() instead of gl.clear()Guido van Rossum1992-09-071-2/+4
|
* New module 'colorsys' implements conversions between different color systems.Guido van Rossum1992-09-071-0/+119
|
* Adapted the world to the new VFile.py. Fixed bugs in Vplay.py:Guido van Rossum1992-09-074-53/+73
| | | | | | missing -n in help(), bogus frame skipping; and added patch for weird time jumps. Removed colorsys.py (now in std library). Fixed "sys.write" error in vcopy.py. Restructured README.
* Almost completely rewritten for cleaner code.Guido van Rossum1992-09-071-371/+578
|
* Remove PAL dependencies; add -w option (initial window width);Guido van Rossum1992-09-041-13/+30
| | | | add stepunit(8, 6) call.
* classobject.c moduleobject.c stdwinmodule.c xxobject.c:Guido van Rossum1992-09-045-15/+56
| | | | | raise AttributeError, not KeyError, when attribute deletion fails. sunaudiodevmodule.c: check for deletion before calling setmember.
* Changed references to /usr/local into /usr/local/bin.Guido van Rossum1992-09-032-18/+62
| | | | Documented $PYTHONSTARTUP
* Give code objects a more useful representation.Guido van Rossum1992-09-031-1/+18
|
* Restructured (yet again) to treat all modules more alike.Guido van Rossum1992-09-031-31/+132
|
* Correct debug printing codeGuido van Rossum1992-09-031-1/+1
|
* Correct spelling in function nameGuido van Rossum1992-09-031-1/+1
|
* Print warnings to stderr and correct spellingGuido van Rossum1992-09-031-2/+2
|
* Remove outdated warning in comments.Guido van Rossum1992-09-031-3/+0
|
* Remove bogus type-and-refcnt setting from newsizedstringobject().Guido van Rossum1992-09-031-3/+0
|
* Got rid the bogus cache code and fix some unchecked errors.Guido van Rossum1992-09-031-46/+88
|
* Compare instance methods by comparing the object and the function.Guido van Rossum1992-09-031-1/+11
|
* Use getargs() everywhere now. Standardize lay-out yet more (an ongoingGuido van Rossum1992-09-031-196/+248
| | | | | project :-). Change object administration: objects are removed from the list of known objects as soon as their form is destroyed.
* Improve check for offset out of rangeGuido van Rossum1992-09-031-4/+8
|
* AOnly define NDEDBUG if DEBUG is not definedGuido van Rossum1992-09-031-0/+3
|
* If a type has a repr function but no print function, printing it nowGuido van Rossum1992-09-031-5/+34
| | | | | | | | calls the repr function. When the refcount is bad, don't print the object at all (chances of crashes). Changes to checking and printing of references: the consistency check is somewhat faster; don't print strings referenced once (most occur in function's name lists).
* Add some debugging features if DEBUG definedGuido van Rossum1992-09-031-0/+10
| | | | | (fetch the filename as a string so I can see it with dbx, and set f_lineno); call abort() when detecting an "undetected" error.
* Add sys.exitfunc feature. Make askync non-static.Guido van Rossum1992-09-031-1/+20
|
* Add $PYTHONSTARTUP feature.Guido van Rossum1992-09-031-0/+10
|
* Add an optional interface to turn malloc debugging on and off.Guido van Rossum1992-09-031-0/+21
|
* Re-implement some operations from string.py in C, for speed.Guido van Rossum1992-09-031-0/+201
|
* Made it work with the sub-spec burst capture interfaceGuido van Rossum1992-09-031-3/+12
| | | | (no bit vector)