Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | * Microscopic corrections to make things compile on the Cray APP. | Guido van Rossum | 1993-04-07 | 6 | -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 Rossum | 1993-04-01 | 6 | -5/+150 |
| | |||||
* | *** empty log message *** | Guido van Rossum | 1993-04-01 | 16 | -16/+16 |
| | |||||
* | Added freeze.py, methfix.py | Guido van Rossum | 1993-04-01 | 1 | -0/+2 |
| | |||||
* | bin/python | Guido van Rossum | 1993-04-01 | 4 | -4/+4 |
| | |||||
* | Microfixes | Guido van Rossum | 1993-04-01 | 3 | -4/+5 |
| | |||||
* | Initial revision | Guido van Rossum | 1993-04-01 | 1 | -0/+447 |
| | |||||
* | Updated because of new opcodes introduced for "fast" local variables. | Guido van Rossum | 1993-03-30 | 1 | -2/+9 |
| | |||||
* | * Fixed some subtleties with fastlocals. You can no longer access | Guido van Rossum | 1993-03-30 | 5 | -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 dictionary | Guido van Rossum | 1993-03-30 | 9 | -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. | ||||
* | Added whatis command (third try -- filesystem was full, rcs lock failed) | Guido van Rossum | 1993-03-29 | 1 | -0/+24 |
| | |||||
* | * Fix bug in tzparse.py for DST timezone | Guido van Rossum | 1993-03-29 | 7 | -9/+51 |
| | | | | | | | * Added whatis command to pdb.py * new module GET.py (GL definitions from <gl/get.h>) * rect.py: is_empty takes a rect as argument, not two points. * Added tests for builtin round() [XXX not yet complete!] | ||||
* | Use type(xxx) in stead of except TypeError. | Sjoerd Mullender | 1993-03-29 | 2 | -108/+104 |
| | |||||
* | Added some error checking. | Sjoerd Mullender | 1993-03-29 | 2 | -2/+20 |
| | |||||
* | * Changed all copyright messages to include 1993. | Guido van Rossum | 1993-03-29 | 97 | -246/+559 |
| | | | | | | | | | | | | | | | | | * Stubs for faster implementation of local variables (not yet finished) * Added function name to code object. Print it for code and function objects. THIS MAKES THE .PYC FILE FORMAT INCOMPATIBLE (the version number has changed accordingly) * Print address of self for built-in methods * New internal functions getattro and setattro (getattr/setattr with string object arg) * Replaced "dictobject" with more powerful "mappingobject" * New per-type functio tp_hash to implement arbitrary object hashing, and hashobject() to interface to it * Added built-in functions hash(v) and hasattr(v, 'name') * classobject: made some functions static that accidentally weren't; added __hash__ special instance method to implement hash() * Added proper comparison for built-in methods and functions | ||||
* | Generalized version of dictionaries, with compatibility hacks. | Guido van Rossum | 1993-03-27 | 3 | -0/+1453 |
| | |||||
* | Fixed watch cursor origin | Guido van Rossum | 1993-03-17 | 1 | -0/+1 |
| | |||||
* | Added support for "compress" type video files. This uses the | Sjoerd Mullender | 1993-03-17 | 1 | -3/+26 |
| | | | | Compression Library to decompress the images. | ||||
* | Added conversion routines to sv module. | Sjoerd Mullender | 1993-03-16 | 3 | -10/+259 |
| | |||||
* | * Changed many files to use mkvalue() instead of newtupleobject(). | Guido van Rossum | 1993-03-16 | 21 | -273/+503 |
| | | | | | | | | | | * Fixcprt.py: added [-y file] option, do only files younger than file. * modsupport.[ch]: added vmkvalue(). * intobject.c: use mkvalue(). * stringobject.c: added "formatstring"; renamed string* to string_*; ceval.c: call formatstring for string % value. * longobject.c: close memory leak in divmod. * parsetok.c: set result node to NULL when returning an error. | ||||
* | Fix syntax error (sorry!) | Guido van Rossum | 1993-03-02 | 1 | -1/+1 |
| | |||||
* | Remove debug print statement | Guido van Rossum | 1993-03-02 | 1 | -1/+0 |
| | |||||
* | VFile: fix c0bits etc. after setformat; Vrec.py: use setformat; rm Makefile. | Guido van Rossum | 1993-03-02 | 2 | -10/+27 |
| | |||||
* | Definitions from <gl/get.h> | Guido van Rossum | 1993-03-01 | 2 | -0/+118 |
| | |||||
* | Vrec.py, Vrecb.py: | Guido van Rossum | 1993-02-25 | 6 | -12/+201 |
| | | | | | | | | | | | - call v.SetParam() after v.BindGLWindow() - turn of dithering in mono/grey mode - use prefposition to place the top left corner at (150, 150) (so that the video remains visible during recording) - default width is 256 Vcopy.py: correct typos; more verbose output. OldVcopy.py: new name for Jack's old grabbing Vcopy.py. Vstat.py: print values of all video parameters. | ||||
* | Change Vinfo and Vaddcache to usr /ufs/guido/bin/sgi/python. | Guido van Rossum | 1993-02-25 | 4 | -19/+14 |
| | | | | | Don't force packfactor to 1 in header when writing rgb data. Small bugfixes in Vcopy. | ||||
* | - Separated grabbing (which isn't used much!) from VFile. | Guido van Rossum | 1993-02-25 | 5 | -306/+478 |
| | | | | | | | | | | | | | - Renamed old Vcopy.py to OldVcopy.py, some cosmetic changes to it (is it still needed?) - Added new Vcopy.py which does everything that Vtime.py does but also format conversions, image scaling, and packfactors. - VFile: make packfactor always a tuple; introduce set and get methods for pf, format, and calculate some derived values. - Added new module GET.py to std library, use it instead of defining DM* in VFile. - Get rid of C programs (new Python programs can do all that they do and they probably don't understand the current file format anyway). | ||||
* | Rewrite applypackfactor() using imageop: faster and more general; | Guido van Rossum | 1993-02-25 | 1 | -27/+14 |
| | | | | get rid of testpackfactor(): not longer necessary | ||||
* | Fix typos in jpeg code | Guido van Rossum | 1993-02-25 | 1 | -4/+4 |
| | |||||
* | Fix terse mode for printing tuple packfactor and to avoid zero division | Guido van Rossum | 1993-02-25 | 1 | -6/+13 |
| | |||||
* | Added audio recording to Vrecb | Jack Jansen | 1993-02-24 | 1 | -6/+76 |
| | |||||
* | Added jpeg conversions | Guido van Rossum | 1993-02-23 | 1 | -1/+26 |
| | |||||
* | Extensive changes to regex module (group(), casefold, etc.) | Guido van Rossum | 1993-02-23 | 1 | -12/+46 |
| | |||||
* | Added audioop.reverse() which reverses an audio sample | Jack Jansen | 1993-02-23 | 1 | -0/+40 |
| | |||||
* | * regexmodule.c: added use of translation table, substring() method. | Guido van Rossum | 1993-02-21 | 1 | -38/+117 |
| | |||||
* | * Changed preface in texipre.dat. | Guido van Rossum | 1993-02-21 | 3 | -20/+12 |
| | | | | | | * Added libwww entry to Makefile. * Documented new array module. * Documented extensions to regex (last, substring, translation table). | ||||
* | Added new module "array" (for now optional) defining array objects. | Guido van Rossum | 1993-02-19 | 2 | -0/+1159 |
| | |||||
* | Will now generate converters that go thru intermedeate formats | Jack Jansen | 1993-02-19 | 1 | -3/+81 |
| | |||||
* | Added converters for rgb<->rgb8 and rgb<->grey | Jack Jansen | 1993-02-19 | 1 | -0/+156 |
| | |||||
* | Added dither() routine | Jack Jansen | 1993-02-19 | 1 | -0/+1 |
| | |||||
* | Bug fixed wrt greyscale conversion | Jack Jansen | 1993-02-19 | 1 | -1/+1 |
| | |||||
* | Fix to allow tightly packed films to be converted | Jack Jansen | 1993-02-19 | 1 | -1/+8 |
| | |||||
* | The usual cosmetic changes after Jack is done... | Guido van Rossum | 1993-02-18 | 2 | -5/+11 |
| | |||||
* | DisplayVideoIn - Class similar to LiveVideoIn but sends data from | Jack Jansen | 1993-02-17 | 2 | -0/+289 |
| | | | | | screen Dsend - Main program analogous to Vsend to send data from display | ||||
* | Added support for 24-bit rgb movies | Jack Jansen | 1993-02-17 | 1 | -2/+8 |
| | |||||
* | Moved line-size stuff to single routine | Jack Jansen | 1993-02-17 | 1 | -11/+15 |
| | |||||
* | Companion to rgb2video: convert cmif film file to rgb files | Jack Jansen | 1993-02-17 | 1 | -0/+165 |
| | |||||
* | This time really check in the new routines :-) | Jack Jansen | 1993-02-17 | 1 | -26/+210 |
| | |||||
* | Added lin2lin, findmax, findfactor and fintfit routines | Jack Jansen | 1993-02-17 | 1 | -10/+51 |
| | |||||
* | * clmodule.c: the documentation was wrong, so changed the interface | Sjoerd Mullender | 1993-02-17 | 1 | -60/+60 |
| | | | | | | accordingly: SetMin, SetMax, SetDefault are no longer methods of the compressor/decompressor but are functions of the cl module and they take a first argument which is a compression scheme |