summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * Extended X interface: pixmap objects, colormap objects visual objects,Sjoerd Mullender1993-10-1112-18/+150
| | | | | | | | image objects, and lots of new methods. * Added counting of allocations and deallocations of builtin types if COUNT_ALLOCS is defined. Had to move calls to NEWREF down in some files. * Bug fix in sorting lists.
* Not everyone has Guido's bin in his/her PATH...Sjoerd Mullender1993-10-112-6/+6
|
* Instead of single clicks, use double clicks to get the instance window.Sjoerd Mullender1993-10-012-0/+4
|
* WDB enhancement: Click once on a line with a class instance in theSjoerd Mullender1993-10-012-0/+48
| | | | | | local or global variables list and you get a window with the instance variable of the class instance. This list is of course automatically kept up to date.
* - VFile: moved decompression code to VideoParams (so it is alsoJack Jansen1993-09-282-14/+44
| | | | | useable via VinFile). - Vcopy: now allows decompression of 'compress' movies.
* Added ability to edit compressed movies.Jack Jansen1993-09-281-0/+3
|
* Sanity check for compress files.Jack Jansen1993-09-281-1/+1
|
* Added autoedit and cancel commands, removed debug outputJack Jansen1993-09-281-4/+9
|
* Don't import gl if not needed.Sjoerd Mullender1993-09-271-3/+10
| | | | Fixed a typo.
* Implemented support for CDDB_PATH and CDDB_WRITE_DIR environmentSjoerd Mullender1993-09-272-20/+104
| | | | | | variables. Added auxiliary routine tochash to convert a table-of-contents to a hashed toc.
* Bug fix: check whether call succeeded *after* the call.Sjoerd Mullender1993-09-141-1/+1
|
* Fixed dealing with faulty COMM chunks.Sjoerd Mullender1993-08-261-3/+3
|
* XEvent.py: Added support for ExposeEvent.Sjoerd Mullender1993-08-253-18/+35
| | | | | profile.py: Some speed improvements (I hope). rect.py: Bug fix in union().
* * clmodule.c (doParams): free PVbuffer in error condition.Sjoerd Mullender1993-08-032-1/+4
| | | | | * frameobject.c (newframeobject): initialize ob_type if taking entry from the free list, since it is zeroed out when DEBUG is defined.
* This commit was manufactured by cvs2svn to create tag 'release099'.v0.9.9cvs2svn1993-07-291-0/+1
|
* Final touch before release.Guido van Rossum1993-07-292-4/+19
|
* * pdb.py: set 'privileged' property when evaluating expressionsGuido van Rossum1993-07-293-2/+11
| | | | | * string.py: change whitespace to include \r, \v and \f. When importing strop succeeds, re-evaluate meaning of letters.
* Minor fixes / changes for Mac compatibility.Guido van Rossum1993-07-294-7/+7
|
* * Added support for X11 modules.Guido van Rossum1993-07-2857-3/+986
| | | | | | | * Makefile: change location of FORMS library. * posixmodule.c: turn #if 0 into #ifdef MSDOS (stuff in unistd.h or not) * Almost all .h files: added CPP magic to avoid duplicate inclusions and to support inclusion from C++.
* forms_set_event_call_back: argument of None resets event callback to NULL.Guido van Rossum1993-07-261-0/+2
|
* VFile - Added support for creating compression lib moviesJack Jansen1993-07-233-54/+242
| | | | | Vb, VbForm - Compression lib movie support Save settings in ~/.Vb_init
* This module can now be used asynchronously. Also, some commandsJack Jansen1993-07-191-25/+127
| | | | have been added.
* Interface to vcr index files (as created by vcrindex program)Jack Jansen1993-07-191-0/+328
|
* * accessobject.c (ownercheck): allow a base class access to protectedGuido van Rossum1993-07-113-15/+42
| | | | | | objects of its derived classes; allow anything that has an attribute named "__privileged__" access to anything. * object.[ch]: added hasattr() -- test whether getattr() will succeed.
* Use module aifc instead of module aiff.Guido van Rossum1993-07-101-8/+8
|
* * config.c: different default PYTHONPATH for MS-DOSGuido van Rossum1993-07-094-21/+98
| | | | | | | * timemodule.c: change #ifdef TURBO_C into #ifdef MSDOS * posixmodule.c: MSDOS changes by Marcel van der Peijl (Digicash) * stropmodule.c: use C isspace(c) to test for whitespace; add whitespace, lowercase and uppercase variables to the module.
* stropmodule.c: use C isspace(c) to test for whitespace; addGuido van Rossum1993-07-081-7/+19
| | | | whitespace variable to module dict.
* * posixpath.py: Fix border cases in normpath ('/foo/..' should return '/')Guido van Rossum1993-07-064-6/+14
| | | | | * ftplib.py: made cwd() use 'CDUP' when dirname is '..' * FL.py: added new constant FL_PLACE_FULLSCREEN
* * Makefile: added all: and default: targets.Guido van Rossum1993-07-0516-165/+140
| | | | | | | | | | | | * many files: made some functions static; removed "extern int errno;". * frozenmain.c: fixed bugs introduced on 24 June... * flmodule.c: remove 1.5 bw compat hacks, add new functions in 2.2a (and some old functions that were omitted). * timemodule.c: added MSDOS floatsleep version . * pgenmain.c: changed exit() to goaway() and added defn of goaway(). * intrcheck.c: add hack (to UNIX only) so interrupting 3 times will exit from a hanging program. The second interrupt prints a message explaining this to the user.
* * pythonmain.c: -k option, usage message, more environment flags.Guido van Rossum1993-06-245-59/+118
| | | | | | | | | | | (the latter also in frozenmain.c) * ceval.c: global 'killprint' flag raises exception when printing an expression statement's value (useful for finding stray output) * timemodule.c: add asctime() and ctime(). Change julian date to 1-based origin (as intended and documented). * Removed unused DO_TIMES stuff from timemodule.c. Added 'epoch' and 'day0' globals (year where time.time() == 0 and day of the week the epoch started).
* pdb.py, bdb.py, cmd.py: use __init__() instead of init()Guido van Rossum1993-06-233-10/+14
|
* * calendar.py: all libC functionality now moved to built-in time moduleGuido van Rossum1993-06-237-41/+48
| | | | | | | * imghdr.py: added jpeg recognition * torgb.py: added jpeg conversion * tzparse.py: use functions from time instead of calendar * whatsound.py: add /ufs/guido/biin/sgi to $PATH when calling 'whatsound'
* * aifc.py: don't die on invalid MARK chunkGuido van Rossum1993-06-204-130/+101
| | | | | | | * calendar.py: remove stuff now built in time; some cleanup and generalization in the calendar printing * cmd.py: use __init__. * tzparse.py: This module is no longer necessary -- use builtin time instead!
* * calendar.py: minor cleanupsGuido van Rossum1993-06-173-26/+49
| | | | | * ftplib.py: support __init__ with optional host, port args * aifc.py: ensure header is written on close even when no data is written
* * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c.Guido van Rossum1993-06-1733-124/+299
| | | | | | | | | | Added $(SYSDEF) to its build rule in Makefile. * cgensupport.[ch], modsupport.[ch]: removed some old stuff. Also changed files that still used it... And made several things static that weren't but should have been... And other minor cleanups... * listobject.[ch]: add external interfaces {set,get}listslice * socketmodule.c: fix bugs in new send() argument parsing. * sunaudiodevmodule.c: added flush() and close().
* Added fixps, fixcid.Guido van Rossum1993-06-141-0/+2
|
* 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
|