summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed bug in object-handler install arg handlingJack Jansen1996-10-011-1/+1
|
* Fixed very nasty null-dereferencing bug in DisposeControl/destroyJack Jansen1996-10-014-35/+42
| | | | object.
* Add main program similar to pdb.Guido van Rossum1996-10-011-0/+19
|
* (py-process-filter): Make sure current-buffer is restored, even in theBarry Warsaw1996-09-301-36/+41
| | | | | event of error. Can't use new Emacs primitive save-current-buffer, so use unwind-protect instead.
* Always open file objects in binary mode.Guido van Rossum1996-09-301-2/+2
|
* Fix subtle bug detected by Jim F.Guido van Rossum1996-09-301-1/+1
|
* Don't die if an ok file method (e.g. fileno) doesn't exist.Guido van Rossum1996-09-301-1/+1
|
* Added DebugStr method to drop into low-level debuggerJack Jansen1996-09-301-0/+16
|
* Added VCHECK compile time option that fills allocated and freed blocksJack Jansen1996-09-301-0/+7
| | | | with garbage.
* Protect '&' signs with '\' in description of PyNumber_Coerce.Guido van Rossum1996-09-271-1/+1
|
* Nits corrected by FredGuido van Rossum1996-09-272-6/+24
|
* (Tkinter.py): Many revisions for Tk 4.X: Added clipboard support, updatedFred Drake1996-09-272-80/+172
| | | | | | | selection interface, handle the -displayof option intelligently in many places. Added "wm colormapwindows" and "winfo colormapfull" support. Removed "focus default" and "focus none" method: these are not in Tk 4.X.
* (Canvas.py): Added definition of CanvasItem.cget() as suggested byFred Drake1996-09-262-0/+2
| | | | Nils Fischbeck.
* - Simplified inheritance structure (still not good enough)Jack Jansen1996-09-267-1070/+1133
| | | | | | | | | - Added menubar in stead of buttons - (optionally) switch menubar back and forth to facilitate debugging FrameWork applications - Handle "Open Document" appleevent - Fixed click in grow-box location - Allow a new debug session after previous one has finished
* Menu callbacks can be strings, in which case they will be looked up inJack Jansen1996-09-261-12/+76
| | | | | the top window. The menubar is redrawn in the event loop in stead of for every change.
* 1. Correct typo in FileWrapper.close() (fix by AMK).Guido van Rossum1996-09-251-6/+10
| | | | | 2. New trusted built-in modules cmath, errno, operator, parser. 3. Corrected bogus s_apply() -- the new one actually works (reported by AMK).
* Fixed PM debuggingJack Jansen1996-09-254-392/+871
| | | | Added different arrow-icons for running/calling/returning/exception
* Disabled splash screen, added ShowMessageJack Jansen1996-09-251-4/+6
|
* The Window Independent Tracer (which will probably move elsewhere onceJack Jansen1996-09-2410-0/+2256
| | | | it is truly window-independent:-)
* Changed about box to come up invisibly (so we can move it to the rightJack Jansen1996-09-237-4765/+4764
| | | | location without flashing).
* About boxes should be at 20% of screen height, not halfwayJack Jansen1996-09-231-1/+1
|
* Added dialog-centering code to splash()Jack Jansen1996-09-231-1/+16
|
* Added support for GetDialogWindow and other accessor functionsJack Jansen1996-09-232-0/+93
|
* Finally *tested* effect of fg and bg yield values (and changed them:-)Jack Jansen1996-09-221-0/+17
|
* Changed default background yield time to 1 tickJack Jansen1996-09-221-1/+14
|
* Use auto-start functionality of aetools.TalkTo and aetools.Error forJack Jansen1996-09-202-14/+4
| | | | server-generated errors.
* raise aetools.Error in stead of MacOS.Error on server-generated errorsJack Jansen1996-09-201-1/+1
|
* Regenerated to use aetools.Error in stead of MacOS.Error.Jack Jansen1996-09-208-153/+230
|
* - Added optional "start" argument to TalkTo initialializer, whichJack Jansen1996-09-201-4/+20
| | | | | | starts the app (if needed). - Added aetools.Error, which is returned in case of server-generated errors (better than MacOS.Error, which was raised previously)
* Convenience routines: wrappers around some of the scriptable finderJack Jansen1996-09-201-0/+138
| | | | functionality.
* Added macfs.FindApplication() to find application FSSpec given signature.Jack Jansen1996-09-203-0/+153
|
* - Regenerated suitesJack Jansen1996-09-204-29/+31
| | | | - Use (and document) "start" argument to TalkTo initializer
* Created Finder 7.0 AE interface and a test program that uses theJack Jansen1996-09-192-0/+343
| | | | finder to launch an application.
* Revamped test case and updated doc string.Guido van Rossum1996-09-171-23/+41
|
* Added line number to most compile-time error messages.Guido van Rossum1996-09-171-88/+90
|
* Calling Application._quit() is now preferred over raising self.Jack Jansen1996-09-1711-20/+14
|
* Added _quit() method similar to FrameWork in stead of settingJack Jansen1996-09-171-1/+4
| | | | self.quitting by hand.
* - Use a flag (self.quitting) as preferred method of exiting mainloopJack Jansen1996-09-171-4/+18
| | | | - Added optional "nomenubar" argument to Application.__init__
* Added macostools.touch() calls to inform the finder of our changes.Jack Jansen1996-09-153-0/+6
|
* - Optionally copy file times for copy/copytree (default on)Jack Jansen1996-09-151-4/+20
| | | | | - Added touch(file) routine to tell the finder a files icon or something has changed (*finally* found out how to do this)
* Fixed macos.splash to actually *draw* the splash box:-)Jack Jansen1996-09-151-3/+7
|
* Added [GS]etDates methods to get and set creation, modification andJack Jansen1996-09-151-0/+88
| | | | backup times.
* (texi2html.py): Use "if __name__ == '__main__':" test. Adjust indentationFred Drake1996-09-134-3978/+3970
| | | | | | | | | to 4 spaces per level (no longer 8). (Makefile): Use .pyc versions of partparse.py and texi2html.py to generate converted documentation formats. This reduces the startup costs; probably doesn't affect anyone but me in reality, but helps when working on the docs.
* Explicitly call rl_initialize().Guido van Rossum1996-09-131-1/+5
| | | | | Set rl_readline_name to python. Move extern decls to more logical point.
* Oops... Need to clear c_error before calling c_quot().Guido van Rossum1996-09-121-0/+2
|
* Properly(?) implemented remainder and divmod (Tim Hochberg)Guido van Rossum1996-09-121-5/+34
|
* Show names of locals in disco (Ka-Ping Yee)Guido van Rossum1996-09-121-0/+6
|
* Added editline fixGuido van Rossum1996-09-122-0/+81
|
* (Demo/parser/FILES, Demo/parser/Makefile, Demo/parser/parser.tex,Fred Drake1996-09-124-13/+132
| | | | | | Demo/parser/texipre.dat): Clean up support files for stand-alone documentation formatting, make sure copyright statement is consistent with the copyright.
* Note obsolescenceGuido van Rossum1996-09-111-1/+5
|