Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Avoid totally empty files. | Guido van Rossum | 1999-04-10 | 1 | -0/+1 |
| | |||||
* | Use re instead of regex. | Guido van Rossum | 1999-04-09 | 1 | -10/+11 |
| | | | | | Don't rewrite the file in place. (Reported by Andy Dustman.) | ||||
* | # TODO entries changed | Guido van Rossum | 1999-04-08 | 2 | -4/+6 |
| | |||||
* | New change log. | Guido van Rossum | 1999-04-07 | 1 | -1/+83 |
| | |||||
* | New version. | Guido van Rossum | 1999-04-07 | 2 | -4/+14 |
| | |||||
* | Version bump awaiting impending new release. | Guido van Rossum | 1999-04-07 | 1 | -1/+1 |
| | | | | (Not much has changed :-( ) | ||||
* | For reasons I dare not explain, this script should always execute | Guido van Rossum | 1999-04-02 | 1 | -2/+1 |
| | | | | main() when imported (in other words, it is not usable as a module). | ||||
* | At Tim Peters' recommendation, add a dummy flush() method to PseudoFile. | Guido van Rossum | 1999-03-29 | 2 | -0/+6 |
| | |||||
* | Tim Peters writes: | Guido van Rossum | 1999-03-28 | 1 | -24/+53 |
| | | | | | | | | I should have waited overnight <wink/sigh>. Nothing wrong with the one I sent, but I couldn't resist going on to add new -r1 / -r2 cmdline options for recreating the original files from ndiff's output. That's attached, if you're game! Us Windows guys don't usually have a sed sitting around <wink>. | ||||
* | Tim Peters writes: | Guido van Rossum | 1999-03-27 | 1 | -160/+88 |
| | | | | | | | Attached is a cleaned-up version of ndiff (added useful module docstring, now echo'ed in case of cmd line mistake); added -q option to suppress initial file identification lines; + other minor cleanups, & a slightly faster match engine. | ||||
* | During display, if EPIPE is raised, it's probably because a pager was | Fred Drake | 1999-03-26 | 1 | -3/+8 |
| | | | | killed. Discard the error in that case, but propogate it otherwise. | ||||
* | Helpwin.__init__(): The text widget should get focus. | Barry Warsaw | 1999-03-26 | 1 | -0/+1 |
| | |||||
* | Removed unnecessary import `from PyncheWidget import PyncheWidget' | Barry Warsaw | 1999-03-26 | 1 | -1/+0 |
| | |||||
* | Added Samuel Bayer's new webchecker. | Guido van Rossum | 1999-03-24 | 1 | -0/+884 |
| | | | | | | | | Unfortunately his code breaks wcgui.py in a way that's not easy to fix. I expect that this is a temporary situation -- eventually Sam's changes will be merged back in. (The changes add a -t option to specify exceptions to the -x option, and explicit checking for #foo style fragment ids.) | ||||
* | New mixin class that defines cmp and hash that use | Guido van Rossum | 1999-03-15 | 1 | -0/+67 |
| | | | | | | | | the ob_itself pointer. This allows (when using the mixin) different Python objects pointing to the same C object and behaving well as dictionary keys. Or so sez Jack Jansen... | ||||
* | Bug submitted by Wayne Knowles, who writes: | Guido van Rossum | 1999-03-12 | 1 | -1/+1 |
| | | | | | | | | | Under Windows, python freeze.py -o hello hello.py creates all the correct files in the hello subdirectory, but the Makefile has the directory prefix in it for frozen_extensions.c nmake fails because it tries to locate hello/frozen_extensions.c (His fix adds a call to os.path.basename() in the appropriate place.) | ||||
* | Don't crash when sys.path contains an empty string. | Guido van Rossum | 1999-03-11 | 1 | -1/+1 |
| | |||||
* | This file was never supposed to be part of IDLE. | Guido van Rossum | 1999-03-11 | 1 | -46/+0 |
| | |||||
* | - Don't crash in the case where a superclass is a string instead of a | Guido van Rossum | 1999-03-11 | 1 | -4/+12 |
| | | | | | | | | pyclbr.Class object; this can happen when the superclass is unrecognizable (to pyclbr), e.g. when module renaming is used. - Show a watch cursor when calling pyclbr (since it may take a while recursively parsing imported modules!). | ||||
* | Add PathBrowser to File module | Guido van Rossum | 1999-03-10 | 2 | -0/+8 |
| | |||||
* | "Path browser" - 4 scrolled lists displaying: | Guido van Rossum | 1999-03-10 | 1 | -0/+151 |
| | | | | | | | | | | | | | | | | directories on sys.path modules in selected directory classes in selected module methods of selected class Sinlge clicking in a directory, module or class item updates the next column with info about the selected item. Double clicking in a module, class or method item opens the file (and selects the clicked item if it is a class or method). I guess eventually I should be using a tree widget for this, but the ones I've seen don't work well enough, so for now I use the old Smalltalk or NeXT style multi-column hierarchical browser. | ||||
* | New utility: multiple scrolled lists in parallel | Guido van Rossum | 1999-03-10 | 1 | -0/+138 |
| | |||||
* | - White background. | Guido van Rossum | 1999-03-10 | 1 | -3/+11 |
| | | | | | - Display "(None)" (or text of your choosing) when empty. - Don't set the focus. | ||||
* | Small change by Jack Jansen. | Guido van Rossum | 1999-03-09 | 1 | -2/+2 |
| | | | | Test for self.returntype behaving like OSErr rather than being it. | ||||
* | Comment out confusing write call. | Guido van Rossum | 1999-02-18 | 1 | -1/+1 |
| | |||||
* | News in 0.3. | Guido van Rossum | 1999-02-17 | 1 | -0/+38 |
| | |||||
* | Bump version to 0.3. | Guido van Rossum | 1999-02-17 | 2 | -4/+5 |
| | |||||
* | After all, we don't need to call the callbacks ourselves! | Guido van Rossum | 1999-02-17 | 1 | -1/+0 |
| | |||||
* | When deleting, call the callbacks *after* deleting the window from our list! | Guido van Rossum | 1999-02-17 | 1 | -2/+1 |
| | |||||
* | Fix up the Windows menu via the new callback mechanism instead of | Guido van Rossum | 1999-02-17 | 1 | -2/+4 |
| | | | | | depending on menu post commands (which don't work when the menu is torn off). | ||||
* | Support callbacks to patch up Windows menus everywhere. | Guido van Rossum | 1999-02-17 | 1 | -2/+25 |
| | |||||
* | Oh, why not. Checking in the Emacs-generated change log. | Guido van Rossum | 1999-02-17 | 1 | -0/+373 |
| | |||||
* | # Accidentally checked in a test version of this file with a bogus | Guido van Rossum | 1999-02-16 | 1 | -1/+0 |
| | | | | # "import fooblurg" :-) | ||||
* | Only pop up the stack viewer when requested in the Debug menu. | Guido van Rossum | 1999-02-16 | 1 | -1/+2 |
| | |||||
* | Clarify how EXAMPLE.py is to be used ("python EXAMPLE.py", not | Guido van Rossum | 1999-02-16 | 1 | -1/+2 |
| | | | | | "python modulator.py EXAMPLE.py") and that it's only there in case you don't have Tkinter. | ||||
* | Don't crash if a window no longer exists. | Guido van Rossum | 1999-02-08 | 1 | -1/+4 |
| | |||||
* | Restructured a bit. | Guido van Rossum | 1999-02-08 | 1 | -12/+16 |
| | |||||
* | Add current dir or paths of file args to sys.path. | Guido van Rossum | 1999-02-01 | 1 | -0/+7 |
| | |||||
* | Add canonic() function -- for brand new bdb.py feature. | Guido van Rossum | 1999-02-01 | 1 | -0/+4 |
| | |||||
* | Protect against accessing an empty stack. | Guido van Rossum | 1999-02-01 | 1 | -2/+11 |
| | |||||
* | Use only the height to decide whether to zoom in or out. | Guido van Rossum | 1999-01-29 | 1 | -7/+8 |
| | |||||
* | Make sure the Tcl variables are shared between windows. | Guido van Rossum | 1999-01-28 | 2 | -9/+9 |
| | |||||
* | Move menu/key binding code from Bindings.py to EditorWindow.py, | Guido van Rossum | 1999-01-28 | 3 | -79/+127 |
| | | | | | | | | with changed APIs -- it makes much more sense there. Also add a new feature: if the first character of a menu label is a '!', it gets a checkbox. Checkboxes are bound to Boolean Tcl variables that can be accessed through the new getvar/setvar/getrawvar API; the variable is named after the event to which the menu is bound. | ||||
* | Add Quit button to the debugger window. | Guido van Rossum | 1999-01-28 | 1 | -0/+6 |
| | |||||
* | When find_again() finds exactly the current selection, it's a failure. | Guido van Rossum | 1999-01-28 | 1 | -0/+8 |
| | |||||
* | Rename idle -> idle.py | Guido van Rossum | 1999-01-28 | 1 | -0/+0 |
| | |||||
* | Only deiconify when iconic. | Guido van Rossum | 1999-01-18 | 2 | -4/+8 |
| | |||||
* | Misc | Guido van Rossum | 1999-01-18 | 1 | -0/+3 |
| | |||||
* | Renamed test.py to testcode.py so one can import Python's | Guido van Rossum | 1999-01-12 | 1 | -0/+0 |
| | | | | test package from inside IDLE. (Suggested by Jack Jansen.) | ||||
* | Hack to close a window that is colorizing. | Guido van Rossum | 1999-01-12 | 2 | -8/+20 |
| |