summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Mostly cosmetics, e.g. change window titles so icon titles are better,Guido van Rossum1993-06-111-19/+25
| | | | size window back to last size when going from 24bits to 8bits mode, etc.
* Keep top left corner of window where it was when resizing.Guido van Rossum1993-06-111-5/+13
| | | | | | | Keep aspect and max size of window at all times. Remove (now unnecessary) sleep(0.1) in vcr capture code. Add messages when initializing VCR. Remove old comments.
* Initial revisionGuido van Rossum1993-06-101-0/+303
|
* Fixed another place where set_rgbmode() should be called.Guido van Rossum1993-06-101-3/+13
| | | | Separated out colormap installation (for override by Glx widget).
* Impor VCR at the top. Change the way audio is recorded subtly.Guido van Rossum1993-06-101-3/+2
|
* VCR.py: Use unix files instead of stdio files for tty communication,Guido van Rossum1993-06-102-10/+151
| | | | | | | because of buffering. Also added several new commands (Jack). VFile.py: Made setting of RGB or colormap mode separate methods, so they can be overridden (e.g. when using the Glx.draw widget the way to change the mode is totally different).
* Added 24 bit RGB captureJack Jansen1993-06-082-24/+166
| | | | | | | Added JPEG capture Added multiple-speed VCR sync and single-step VCR sync VCR sync recorded movies get correct timestamps Added (still non-functional) 24-bit picture scaling
* Grab a 24-bit image off the StarterVideoJack Jansen1993-06-081-0/+97
|
* Added jpeg grabberJack Jansen1993-06-081-2/+4
|
* Newss class styleJack Jansen1993-06-081-1/+1
|
* Small imporvements, added mpz and md5 to list of modules,Guido van Rossum1993-06-051-10/+16
| | | | changed library list somewhat. CLOSE FILE "tmpconfig.c" AFTER WRITING!
* Ignore ,v files tooGuido van Rossum1993-06-051-1/+1
|
* Initial revisionGuido van Rossum1993-06-051-0/+91
|
* Initial revisionGuido van Rossum1993-06-032-0/+24
|
* * toaiff.py: import whatsound instead of sndhdrGuido van Rossum1993-06-015-6/+551
| | | | | | * sndhdr.py: renamed to whatsound.py; use new aifc module for AIFF/AIFC * ftplib.py: added close() (closes without sending QUIT command) * aifc.py: documented close()
* Changed setpf so it understands old-style packfactorsJack Jansen1993-06-011-0/+2
|
* * socketmodule.c: fix long-standing bug in recvfrom() -- addrlenGuido van Rossum1993-05-251-2/+5
| | | | wasn't initialized.
* New class syntaxJack Jansen1993-05-251-1/+1
|
* * classobject.c: in instance_getattr, don't make a method out of aGuido van Rossum1993-05-259-101/+125
| | | | | | | | | | function found as instance data. * socketmodule.c: added 'flags' argument sendto/recvfrom, rewrite argument parsing in send/recv. * More changes related to access (terminology change: owner instead of class; allow any object as owner; local/global variables are owned by their dictionary, only class/instance data is owned by the class; "from...import *" now only imports objects with public access; etc.)
* * lib1.tex: documented dict.items() and dict.values()Guido van Rossum1993-05-244-2/+38
| | | | | * ref3.tex: documented new __init__ and __del__ special methods of class instances.
* * ftplib.py: added abort() command (sends oob data).Guido van Rossum1993-05-2415-35/+127
| | | | | | * Several modules: change "class C(): ..." to "class C: ...". * flp.py: support for frozen forms. * Added string.find() which is like index but returns -1 if not found
* * Lots of small changes related to access.Guido van Rossum1993-05-217-48/+111
| | | | | | | * Added "access *: ...", made access work for class methods. * Introduced subclass check: make sure that when calling ClassName.methodname(instance, ...), the instance is an instance of ClassName or of a subclass thereof (this might break some old code!)
* Access checks now work, at least for instance data (not for methodsGuido van Rossum1993-05-2014-150/+655
| | | | | | | yet). The class is now passed to eval_code and stored in the current frame. It is also stored in instance method objects. An "unbound" instance method is now returned when a function is retrieved through "classname.funcname", which when called passes the class to eval_code.
* Several changes in one:Guido van Rossum1993-05-1921-800/+1200
| | | | | | | | | | | | | | | | (1) dictionaries/mappings now have attributes values() and items() as well as keys(); at the C level, use the new function mappinggetnext() to iterate over a dictionary. (2) "class C(): ..." is now illegal; you must write "class C: ...". (3) Class objects now know their own name (finally!); and minor improvements to the way how classes, functions and methods are represented as strings. (4) Added an "access" statement and semantics. (This is still experimental -- as long as you don't use the keyword 'access' nothing should be changed.)
* New posix functions open, close, dup, dup2, lseek, read, write, fstat, pipe.Guido van Rossum1993-05-171-27/+233
| | | | Improved some comments and defaults in the Makefile.
* Added cwd()Guido van Rossum1993-05-171-0/+4
|
* Jack's VCR control moduleGuido van Rossum1993-05-121-0/+297
|
* * selectmodule.c: fix (another!) two memory leaks -- this time in list2setGuido van Rossum1993-05-123-2/+21
| | | | * tokenizer.[ch]: allow continuation without \ inside () [] {}.
* Lots of small changes collected over months...Guido van Rossum1993-05-127-163/+157
|
* * pythonrun.c: Print exception type+arg *after* stack trace instead ofGuido van Rossum1993-05-127-81/+95
| | | | | | | before it. * ceval.c, object.c: moved testbool() to object.c (now extern visible) * stringobject.c: fix bugs in and rationalize string resize in formatstring() * tokenizer.[ch]: fix non-working code for lines longer than BUFSIZ
* Implemented VCR capture using forward slow instead of stepping.Guido van Rossum1993-05-112-26/+83
| | | | Also added a 'rate' field to specify the capture rate in this case.
* Disconnect from VCR when switching modes.Guido van Rossum1993-05-102-6/+52
| | | | | Wait for VCR ready and set VCR mode to DNR when initializing VCR. Fix type error in getfloat().
* Added single frame capturing.Guido van Rossum1993-05-102-270/+653
| | | | | | Added VCR synchronized capturing. Added audio capturing (for continuous mode only). Lots of internal and external improvements.
* Revived the old aplay tool which can play synchronous audio and video...Guido van Rossum1993-05-101-0/+167
|
* Moved stop button again; default form position next to video window.Guido van Rossum1993-05-072-111/+172
|
* All combinations of video format and capture mode (cont/burst) nowGuido van Rossum1993-05-071-85/+201
| | | | work. Reorganized a lot of the code, still not satisfied...
* Use groups to show/hide "Stop capture" button.Guido van Rossum1993-05-062-13/+85
| | | | | Made mono capture work. Don't support rgb24 capture (the code for this doesn't exist in Vrec either!).
* New program: Video Bag Of Tricks. Will eventually replace Vrec andGuido van Rossum1993-05-062-0/+570
| | | | Vrecb. Has a user interface dialog to set options etc.
* (I suggest a recompile after getting this, the ceval.c bugfix may be crucial!)Guido van Rossum1993-04-153-6/+24
| | | | | | | * Makefile: removed superfluous AR=ar, fixed misleading comment. * ceval.c: fixed debugging code; save/restore errors in locals_2_fast. * intrcheck.c: for SunOS etc., turn off syscall resumption. * regexpr.h: bump number of registers to 100.
* Fix bug in class instance hash (forgot to clear error condition).Guido van Rossum1993-04-081-3/+8
|
* * Microscopic corrections to make things compile on the Cray APP.Guido van Rossum1993-04-076-4/+31
| | | | | * Removed one use of $> in Makefile and warned about others. Added configurable lines in Makefile to change CC and AR.
* Support for frozen scripts; added -i option.Guido van Rossum1993-04-016-5/+150
|
* *** empty log message ***Guido van Rossum1993-04-0116-16/+16
|
* Added freeze.py, methfix.pyGuido van Rossum1993-04-011-0/+2
|
* bin/pythonGuido van Rossum1993-04-014-4/+4
|
* MicrofixesGuido van Rossum1993-04-013-4/+5
|
* Initial revisionGuido van Rossum1993-04-011-0/+447
|
* Updated because of new opcodes introduced for "fast" local variables.Guido van Rossum1993-03-301-2/+9
|
* * Fixed some subtleties with fastlocals. You can no longer accessGuido van Rossum1993-03-305-36/+117
| | | | | | | | | | | | | | | | | | f_fastlocals in a traceback object (this is a core dump hazard if there are <nil> entries), but instead eval_code() merges the fast locals back into the locals dictionary if it looks like the local variables will be retained. Also, the merge routines save exceptions since this is sometimes needed (alas!). * Added id() to bltinmodule.c, which returns an object's address (identity). Useful to walk arbitrary data structures containing cycles. * Added compile() to bltinmodule.c and compile_string() to pythonrun.[ch]: support to exec/eval arbitrary code objects. The code that defaults globals and locals is moved from run_node in pythonrun.c (which is now identical to eval_node) to eval_code in ceval.c. [XXX For elegance a clean-up session is necessary.]
* Changes to speed up local variables enormously, by avoiding dictionaryGuido van Rossum1993-03-309-71/+245
| | | | | | lookup (opcode.h, ceval.[ch], compile.c, frameobject.[ch], pythonrun.c, import.c). The .pyc MAGIC number is changed again. Added get_menu_text to flmodule.