- 03 Jun, 1999 3 commits
-
-
Guido van Rossum authored
IDLE is now the first Python editor in the Universe not confused by my doctest.py <wink>. As threatened, this defines IDLE's is_char_in_string function as a method of EditorWindow. You just need to define one similarly in whatever it is you pass as editwin to AutoIndent; looking at the EditorWindow.py part of the patch should make this clear.
-
Guido van Rossum authored
-
Guido van Rossum authored
constructed.
-
- 02 Jun, 1999 7 commits
-
-
Guido van Rossum authored
content-type to application/x-www-form-urlencoded only when the method is POST. Ditto for when the content-type is unrecognized -- only fall back to urlencoded with POST.
-
Guido van Rossum authored
Always cancel on <Key-Escape> or <ButtonPress>.
-
Guido van Rossum authored
stuff for getting the tip. Had to fix the Key-( and Key-) events for Unix. Will have to re-apply my patch for catching KeyRelease and ButtonRelease events.
-
Guido van Rossum authored
-
Guido van Rossum authored
the constructor so he can eliminate the sys.ps2 that PythonWin leaves in the source; (2) remove duplicate history items.
-
Guido van Rossum authored
well: make three dialog routines instance variables.
-
Guido van Rossum authored
well: make three dialog routines instance variables.
-
- 01 Jun, 1999 20 commits
-
-
Guido van Rossum authored
Unix bindings for <<toggle-tabs>> and <<change-indentwidth>> were missing, and somehow that meant the events were never generated, even though they were in the menu. The new Unix bindings are now the same as the Windows bindings (M-t and M-u).
-
Guido van Rossum authored
The new version (attached) is fast enough all the time in every real module I have <whew!>. You can make it slow by, e.g., creating an open list with 5,000 90-character identifiers (+ trailing comma) each on its own line, then adding an item to the end -- but that still consumes less than a second on my P5-166. Response time in real code appears instantaneous. Fixed some bugs. New feature: when hitting ENTER and the cursor is beyond the line's leading indentation, whitespace is removed on both sides of the cursor; before whitespace was removed only on the left; e.g., assuming the cursor is between the comma and the space: def something(arg1, arg2): ^ cursor to the left of here, and hit ENTER arg2): # new line used to end up here arg2): # but now lines up the way you expect New hack: AutoIndent has grown a context_use_ps1 Boolean config option, defaulting to 0 (false) and set to 1 (only) by PyShell. Reason: handling the fancy stuff requires looking backward for a parsing synch point; ps1 lines are the only sensible thing to look for in a shell window, but are a bad thing to look for in a file window (ps1 lines show up in my module docstrings often). PythonWin's shell should set this true too. Persistent problem: strings containing def/class can still screw things up completely. No improvement. Simplest workaround is on the user's head, and consists of inserting e.g. def _(): pass (or any other def/class) after the end of the multiline string that's screwing them up. This is especially irksome because IDLE's syntax coloring is *not* confused, so when this happens the colors don't match the indentation behavior they see.
-
Guido van Rossum authored
[Tim, after adding some bracket smarts to AutoIndent.py] > ... > What it can't possibly do without reparsing large gobs of text is > suggest a reasonable indent level after you've *closed* a bracket > left open on some previous line. > ... The attached can, and actually fast enough to use -- most of the time. The code is tricky beyond belief to achieve that, but it works so far; e.g., return len(string.expandtabs(str[self.stmt_start : ^ indents to caret i], ^ indents to caret self.tabwidth)) + 1 ^ indents to caret It's about as smart as pymode now, wrt both bracket and backslash continuation rules. It does require reparsing large gobs of text, and if it happens to find something that looks like a "def" or "class" or sys.ps1 buried in a multiline string, but didn't suck up enough preceding text to see the start of the string, it's completely hosed. I can't repair that -- it's just too slow to reparse from the start of the file all the time. AutoIndent has grown a new num_context_lines tuple attribute that controls how far to look back, and-- like other params --this could/should be made user-overridable at startup and per-file on the fly.
-
Guido van Rossum authored
One new file in the attached, PyParse.py. The LineStudier (whatever it was called <wink>) class was removed from AutoIndent; PyParse subsumes its functionality.
-
Guido van Rossum authored
Removed "New tabwidth" menu binding. Added "a tab means how many spaces?" dialog to block tabify and untabify. I think prompting for this is good now: they're usually at-most-once-per-file commands, and IDLE can't let them change tabwidth from the Tk default anymore, so IDLE can no longer presume to have any idea what a tab means. Irony: for the purpose of keeping comments aligned via tabs, Tk's non-default approach is much nicer than the Emacs/Notepad/Codewright/vi/etc approach.
-
Guido van Rossum authored
Here's the correct patch!
-
Guido van Rossum authored
these happen to be 'closed' and 'softspace', which may change! Noted by Dave Ascher (with slightly different solution).
-
Guido van Rossum authored
2. No longer need to reset pyclbr cache and show watch cursor when calling ClassBrowser -- the ClassBrowser takes care of pyclbr and the TreeWidget takes care of the watch cursor. 3. Reset the focus to the current window after error message about class browser on buffer without filename.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Fred Drake authored
for Windows using win32pipe.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
file:///path/file/nameGuido van Rossum authored
-
Guido van Rossum authored
arguments. [Slightly changed from submitted patch.]
-
- 27 May, 1999 6 commits
-
-
Barry Warsaw authored
posix_error_with_filename() instead of posix_error(), passing in the name argument, so you get information on which directory was being listed.
-
Fred Drake authored
that there's a Global Module Index; there can be only one!
-
Fred Drake authored
navigation bars in the HTML output.
-
Fred Drake authored
description.
-
Fred Drake authored
Use memberdesc instead of datadesc to document object attributes. This gets the index right.
-
Fred Drake authored
items -> item The returned list will then have one more items than the number of non-overlapping occurrences of the separator in the string.
-
- 26 May, 1999 3 commits
-
-
Fred Drake authored
empty comments trigger a bug in LaTeX2HTML. Problem reported by Gerry Wiener <gerry@ucar.edu>.
-
Fred Drake authored
to use `getconf LFS_CFLAGS`. Steve Clift (the author of the section and large file support) agrees that this is the right thing to do.
-
Barry Warsaw authored
there is "su" top level domain still maintained in ex-USSR. at least "*.msk.su" zone (Moscow, USSR) is still in use.
-
- 25 May, 1999 1 commit
-
-
Fred Drake authored
Added some index entries.
-