summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Explicitly close menus. Make '0' mean the last menu item.Guido van Rossum1992-12-141-0/+5
|
* ActualizedGuido van Rossum1992-12-1411-11/+11
|
* Adapted to modern timesGuido van Rossum1992-12-141-3/+8
|
* Adapted to modern times. Cosmetic and comment changes.Guido van Rossum1992-12-141-7/+23
|
* Adapted to modern times and fixed a bug (id --> my_id)Guido van Rossum1992-12-141-3/+3
|
* adapted to newest version of CL library.Sjoerd Mullender1992-12-141-358/+318
|
* CL.py: adapted to newest version of CL library.Sjoerd Mullender1992-12-146-132/+530
| | | | | | | | | | cdplayer.py: It is now also possible to give the CD's TOC as argument to init(). The TOC is a string consisting of 2 digits giving the number of tracks and then for each track the length of the track as number of minutes and number of seconds (2 digits each). cddb.py: Interface to the .cddb directory. Usage is the same as for cdplayer.py.
* /usr/local/bin/pythonGuido van Rossum1992-12-145-5/+5
|
* Add description of kunst.pyGuido van Rossum1992-12-141-0/+6
|
* Unknown changes by Jack.Guido van Rossum1992-12-141-61/+41
|
* Use tzparse to avoid embarrasment in other timezones or when DST changes.Guido van Rossum1992-12-141-9/+9
| | | | Adapt to new, stricter, rules for argument passing.
* * Got entirely rid of path.py.Guido van Rossum1992-12-1441-228/+208
| | | | | | | | * Many modules: fixes for new, stricter, argument passing rules (most changes were automatic ones -- not all of this is tested!). * gwin.py: now uses mainloop.py for its main loop and window admin. * mainloop.py: always call dispatch() with event as a tuple! * Fix bug in pdb's 'clear' command -- don't set the bpt but clear it!
* Fix for new argument passing rules.Guido van Rossum1992-12-141-14/+14
|
* Band-aid to fix it for new argument passing rules.Guido van Rossum1992-12-141-12/+7
|
* Changes for supporting monochrome and greyscale video (not yet fullyJack Jansen1992-12-147-46/+185
| | | | functional)
* Fix bug when reporting errorGuido van Rossum1992-12-102-3/+3
|
* Adapt to modern times...Guido van Rossum1992-12-102-25/+27
|
* Initial revisionGuido van Rossum1992-12-092-0/+206
|
* Friendlier response to interrupt. Use /usr/local/*bin*/python.Guido van Rossum1992-12-091-3/+6
|
* Microscopic changes, comments/messages changed.Guido van Rossum1992-12-095-9/+17
| | | | Real important: turn off FIELDDROP in Vrec.
* Added new modules mpz, md5 (by JH, requiring GNU MP).Guido van Rossum1992-12-081-0/+14
|
* Incorporated Jan-Hein's changes and texinfo conversion.Guido van Rossum1992-12-0817-19/+4681
|
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]);Guido van Rossum1992-12-081-8/+32
| | | | converted socket() to use of getargs().
* Added output from testall run, for autotest.py.Guido van Rossum1992-11-271-0/+133
|
* Added some new tests and two new files for testing: test_types.pyGuido van Rossum1992-11-276-6/+295
| | | | | (testing operations on built-in types) and autotest.py (automatic regression testing).
* * classobject.c: in instance_lenth, test result of call_objectGuido van Rossum1992-11-263-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 addedGuido van Rossum1992-11-267-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 Rossum1992-11-264-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 Rossum1992-11-161-0/+16
|
* Support default port.Guido van Rossum1992-11-161-1/+3
|
* Added comments, use 'global' and change prompt to "ftp.py> "Guido van Rossum1992-11-161-5/+17
|
* Restructured into several subroutines.Guido van Rossum1992-11-161-19/+57
|
* Added all_errors, list of all possible exceptions.Guido van Rossum1992-11-061-1/+7
|
* Use getsockname() if it existsGuido van Rossum1992-11-051-11/+18
|
* Added much functionality, changed some names (errors, login).Guido van Rossum1992-11-051-54/+160
|
* * change default line numbers for 'list' in pdb.pyGuido van Rossum1992-11-057-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 revisionGuido van Rossum1992-11-041-0/+258
|
* Added imageopmodule.c, also added them to Makefile and config.c.Guido van Rossum1992-10-262-0/+184
| | | | | Fixed a bug in Addmodule.sh that caused a crash in Configure.py. Fixed the crash in Configure.py...
* Fixed commentsGuido van Rossum1992-10-251-4/+4
|
* Use /usr/local/bin/pythonGuido van Rossum1992-10-255-5/+5
|
* Added gopher.py; removed IN.pyGuido van Rossum1992-10-251-4/+7
|
* Initial revisionGuido van Rossum1992-10-251-0/+347
|
* * bltinmodule.c: added built-in function cmp(a, b)Guido van Rossum1992-10-187-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.pyGuido van Rossum1992-10-1810-46/+778
| | | | is moved to the sgi subdirectory.
* Add .fdc and .rgb to default list of ignored extensionsGuido van Rossum1992-10-021-1/+1
|
* New tool Vfix: truncate the right edge of 'grey' type images to makeGuido van Rossum1992-09-293-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 Mullender1992-09-291-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 doneGuido van Rossum1992-09-296-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 orGuido van Rossum1992-09-258-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 optionalGuido van Rossum1992-09-251-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.