Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix for new argument passing rules. | Guido van Rossum | 1992-12-14 | 1 | -14/+14 |
| | |||||
* | Band-aid to fix it for new argument passing rules. | Guido van Rossum | 1992-12-14 | 1 | -12/+7 |
| | |||||
* | Changes for supporting monochrome and greyscale video (not yet fully | Jack Jansen | 1992-12-14 | 7 | -46/+185 |
| | | | | functional) | ||||
* | Fix bug when reporting error | Guido van Rossum | 1992-12-10 | 2 | -3/+3 |
| | |||||
* | Adapt to modern times... | Guido van Rossum | 1992-12-10 | 2 | -25/+27 |
| | |||||
* | Initial revision | Guido van Rossum | 1992-12-09 | 2 | -0/+206 |
| | |||||
* | Friendlier response to interrupt. Use /usr/local/*bin*/python. | Guido van Rossum | 1992-12-09 | 1 | -3/+6 |
| | |||||
* | Microscopic changes, comments/messages changed. | Guido van Rossum | 1992-12-09 | 5 | -9/+17 |
| | | | | Real important: turn off FIELDDROP in Vrec. | ||||
* | Added new modules mpz, md5 (by JH, requiring GNU MP). | Guido van Rossum | 1992-12-08 | 1 | -0/+14 |
| | |||||
* | Incorporated Jan-Hein's changes and texinfo conversion. | Guido van Rossum | 1992-12-08 | 17 | -19/+4681 |
| | |||||
* | socketmodule.c: added socket.fromfd(fd, family, type, [proto]); | Guido van Rossum | 1992-12-08 | 1 | -8/+32 |
| | | | | converted socket() to use of getargs(). | ||||
* | Added output from testall run, for autotest.py. | Guido van Rossum | 1992-11-27 | 1 | -0/+133 |
| | |||||
* | Added some new tests and two new files for testing: test_types.py | Guido van Rossum | 1992-11-27 | 6 | -6/+295 |
| | | | | | (testing operations on built-in types) and autotest.py (automatic regression testing). | ||||
* | * classobject.c: in instance_lenth, test result of call_object | Guido van Rossum | 1992-11-26 | 3 | -0/+6 |
| | | | | | | for exception before using it. Fixed a few other places where the outcome of calling sq_length wasn't tested for exceptions (bltinmodule.c, ceval.c). | ||||
* | * mainloop.py: added facility for calling select(). Also added | Guido van Rossum | 1992-11-26 | 7 | -28/+374 |
| | | | | | | | | embryonic facility for pseudo-modal dialogs. * stdwinevents.py: added modifier masks for key/mouse events * renamed exceptions in nntplib.py * Changed string.join() to call string.joinfields() to profit of strop.joinfields() | ||||
* | * config.c: Added audioop to lists. | Guido van Rossum | 1992-11-26 | 4 | -1/+152 |
| | | | | | | | | | * Makefile: change default source directory * socketmodule.c: added getsockname and getpeername * bltinmodule.c: corrected typo in type() error message * Added new built-in functions str() and repr(): repr(x) == `x`; str(x) == x if x is a string, otherwise str(x) == repr(x). * Added joinfields to stropmodule.c (string.join calls joinfields now) | ||||
* | *** empty log message *** | Guido van Rossum | 1992-11-16 | 1 | -0/+16 |
| | |||||
* | Support default port. | Guido van Rossum | 1992-11-16 | 1 | -1/+3 |
| | |||||
* | Added comments, use 'global' and change prompt to "ftp.py> " | Guido van Rossum | 1992-11-16 | 1 | -5/+17 |
| | |||||
* | Restructured into several subroutines. | Guido van Rossum | 1992-11-16 | 1 | -19/+57 |
| | |||||
* | Added all_errors, list of all possible exceptions. | Guido van Rossum | 1992-11-06 | 1 | -1/+7 |
| | |||||
* | Use getsockname() if it exists | Guido van Rossum | 1992-11-05 | 1 | -11/+18 |
| | |||||
* | Added much functionality, changed some names (errors, login). | Guido van Rossum | 1992-11-05 | 1 | -54/+160 |
| | |||||
* | * change default line numbers for 'list' in pdb.py | Guido van Rossum | 1992-11-05 | 7 | -10/+442 |
| | | | | | | | | | * changed eval() into getattr() in cmd.py * added dirname(), basename() and (dummy) normath() to macpath.py * renamed nntp.py to nntplib.py * Made string.index() compatible with strop.index() * Make string.atoi('') raise string.atoi_error rather than ValueError * Added dirname() and normpath() to posixpath. | ||||
* | Initial revision | Guido van Rossum | 1992-11-04 | 1 | -0/+258 |
| | |||||
* | Added imageopmodule.c, also added them to Makefile and config.c. | Guido van Rossum | 1992-10-26 | 2 | -0/+184 |
| | | | | | Fixed a bug in Addmodule.sh that caused a crash in Configure.py. Fixed the crash in Configure.py... | ||||
* | Fixed comments | Guido van Rossum | 1992-10-25 | 1 | -4/+4 |
| | |||||
* | Use /usr/local/bin/python | Guido van Rossum | 1992-10-25 | 5 | -5/+5 |
| | |||||
* | Added gopher.py; removed IN.py | Guido van Rossum | 1992-10-25 | 1 | -4/+7 |
| | |||||
* | Initial revision | Guido van Rossum | 1992-10-25 | 1 | -0/+347 |
| | |||||
* | * bltinmodule.c: added built-in function cmp(a, b) | Guido van Rossum | 1992-10-18 | 7 | -19/+150 |
| | | | | | | | | | | | | | | | * flmodule.c: added {do,check}_only_forms to fl's list of functions; and don't print a message when an unknown object is returned. * pythonrun.c: catch SIGHUP and SIGTERM to do essential cleanup. * Made jpegmodule.c smaller by using getargs() and mkvalue() consistently. * Increased parser stack size to 500 in parser.h. * Implemented custom allocation of stack frames to frameobject.c and added dynamic stack overflow checks (value stack only) to ceval.c. (There seems to be a bug left: sometimes stack traces don't make sense.) | ||||
* | Misc changes and new modules. whrandom is "objectified". SOCKET.py | Guido van Rossum | 1992-10-18 | 10 | -46/+778 |
| | | | | is moved to the sgi subdirectory. | ||||
* | Add .fdc and .rgb to default list of ignored extensions | Guido van Rossum | 1992-10-02 | 1 | -1/+1 |
| | |||||
* | New tool Vfix: truncate the right edge of 'grey' type images to make | Guido van Rossum | 1992-09-29 | 3 | -11/+114 |
| | | | | | | | | | | the scanline width a multiple of 4. VFile: use gl.gversion() to distinguish 4.0.1 and 4.0.5 Indigos; truncate width and height to multiples of packfactor. Vinfo: add -t to descriptive comment; print '!' after packfactor for files that should be fixed with Vfix. | ||||
* | Lots of little fixes. | Sjoerd Mullender | 1992-09-29 | 1 | -73/+110 |
| | | | | | | | | | | | | | | | | | - merged CloseCompressor and CloseDecompressor into one function - keep existing errors in error function (for exceptions raised in the Compress or Decompress callback functions) - remove newline from error string generated by error function - allocate less memory when compressing multiple frames - keep existing errors when clCompress or clDecompress fails - raise an exception when compressed data doesn't fit within dataMaxSize bytes - allocate frameSize bytes for decompression buffer instead of dataMaxSize - use mkvalue more often - new function QueryParams which will accept CL.AUDIO and CL.VIDEO args - changed some function names | ||||
* | VFile: added new formats 'jpeg' and 'jpeggrey'. Decompression is done | Guido van Rossum | 1992-09-29 | 6 | -33/+299 |
| | | | | | | | | | | | using module 'jpeg' by the Displayer class. (Unfortunately it's too slow for real time.) Print file size in printinfo() method. Vinfo: added -t option (terse -- one line per file) and usage message. Vtime: use BasicV{in,out}File classes -- the minimum needed. Vmkjpeg, Vunjpeg: new utilities for jpeg (de)compression. | ||||
* | Modified most (but not yet all) I/O to always go through sys.stdout or | Guido van Rossum | 1992-09-25 | 8 | -76/+217 |
| | | | | | | sys.stderr or sys.stdin, and to work with any object as long as it has a write() (respectively readline()) methods. Some functions that took a FILE* argument now take an object* argument. | ||||
* | New shell script Addmodule.sh makes it easier to add a new optional | Guido van Rossum | 1992-09-25 | 1 | -0/+3 |
| | | | | | | module by editing Makefile and config.c in all the right places. Used it to add most modules currently known. Added markers to help the script to Makefile and config.c. | ||||
* | Changed an ifdef from IRIX_405 to CDsetcallback. | Sjoerd Mullender | 1992-09-25 | 1 | -1/+1 |
| | |||||
* | Fixed the last known bugs. | Sjoerd Mullender | 1992-09-25 | 1 | -16/+82 |
| | |||||
* | Added resizevideo() interface to LiveVideoIn and rationalized size | Guido van Rossum | 1992-09-24 | 1 | -1/+1 |
| | | | | adjustments (somewhat). Adapted Vsend to use it. | ||||
* | Added resizevideo() interface to LiveVideoIn and rationalized size | Guido van Rossum | 1992-09-24 | 2 | -23/+38 |
| | | | | adjustments (somewhat). Adapted Vsend to use it. | ||||
* | Changed the init() interface of LiveVideoOut to read out the window | Guido van Rossum | 1992-09-24 | 3 | -39/+49 |
| | | | | | | | size automatically -- the video is always centered. Added resizevideo() and reshapewindow() interfaces. Documented all methods. Changed Vsend/Vreceive to use the new interface. Allow window resizing by the user in Vreceive. | ||||
* | Python equivalent of <netinet/in.h> (SGI specific, hence not in python/lib). | Guido van Rossum | 1992-09-24 | 1 | -0/+54 |
| | |||||
* | Added options to Vsend and Vreceive; moved common defaults to senddefs. | Guido van Rossum | 1992-09-24 | 4 | -36/+115 |
| | | | | Optimized LiveVideoIn quite a bit; removed print stmt from LiveVideoOut. | ||||
* | Added multicast to Vsend and Vreceive. Updated README. Rediced queue | Guido van Rossum | 1992-09-24 | 4 | -10/+68 |
| | | | | size to 1 in LiveVideoIn. | ||||
* | Defined exception cd.error which is used for errors other than | Sjoerd Mullender | 1992-09-24 | 1 | -28/+37 |
| | | | | TypeError, MemoryError and such. | ||||
* | New module "CL" (Compression Library) for Irix 4.0.5 and higher. | Sjoerd Mullender | 1992-09-24 | 2 | -0/+168 |
| | |||||
* | New built-in module "cl" (Compression Library). Only for Irix 4.0.5 | Sjoerd Mullender | 1992-09-24 | 2 | -42/+129 |
| | | | | and higher. Made a few improvements to previous version. | ||||
* | *** empty log message *** | Guido van Rossum | 1992-09-24 | 1 | -0/+10 |
| |