- 31 Oct, 1998 1 commit
-
-
Barry Warsaw authored
-
- 30 Oct, 1998 3 commits
-
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
- 28 Oct, 1998 5 commits
-
-
Fred Drake authored
HTML version. Give a reference to the actual section to allow a hyperlink to be built.
-
Fred Drake authored
-
Andrew M. Kuchling authored
Corrected error: {,5} is not equivalent to {0,5}.
-
Barry Warsaw authored
generalize the matching of function arguments.
-
Barry Warsaw authored
#simple things. First step: rename the Imenu supportive variables and #functions in this file to py-imenu-* so I can grok what is part of #python-mode and what is part of Imenu. (py-imenu-create-index-engine): Fixed problem with two classes in a single file, caused by new semantics of py-beginning-of-def-or-class when called programmatically. #Note, there are still some problems with Imenu when arguments to #functions are funky, but it should be much better now.
-
- 27 Oct, 1998 3 commits
-
-
Barry Warsaw authored
#checkin script.
-
Fred Drake authored
Switch from bash to ksh, in the hope that more systems support it (one report of a site without an available bash).
-
Barry Warsaw authored
-
- 26 Oct, 1998 1 commit
-
-
Guido van Rossum authored
-
- 24 Oct, 1998 11 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
next week. :-)
-
Guido van Rossum authored
-
Guido van Rossum authored
Different action on WM_DELETE_WINDOW is more likely to do the right thing, allowing us to destroy old windows.
-
Guido van Rossum authored
using Canvas coordinates, and goto() uses turtle coordinates and accepts variable argument lists.
-
Guido van Rossum authored
unlink() or fdopen() fail, close the file descriptor and re-raise the exception.
-
Guido van Rossum authored
-
Guido van Rossum authored
values (4.7.1) should return l, not a. Reported by Axel Boldt.
-
Guido van Rossum authored
-
Guido van Rossum authored
filenames generated are easily predictable, it is possible to trick an unsuspecting program into overwriting another file by creating a symbolic link with the predicted name. Fix this by using the low-level os.open() function with the O_EXCL flag and mode 0700. On non-Unix platforms, presumably there are no symbolic links so the problem doesn't exist. The explicit test for Unix (posix, actually) makes it possible to change the non-Unix logic to work without a try-except clause. The mktemp() file is as unsafe as ever.
-
Guido van Rossum authored
-
- 22 Oct, 1998 15 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
own version.
-
Guido van Rossum authored
""" I've attached a long overdue patch to pickle.py to bring it to format 1.3, which is the same as 1.2 except that the binary float format is supported. This is done using the new platform-indepent format features of struct. This patch also gets rid of the undocumented obsolete Pickler dump_special method. """
-
Barry Warsaw authored
Added a To Do list.
-
Barry Warsaw authored
show(): added color keyword here so that the selected color can be chosen on each invocation of askcolor(). Also fixed this class, and askcolor() so that the same Chooser instance can be re-used instead of creating a new one on each invocation of askcolor(). Added a module function save() which can be used to explicitly save the option database in ~/.pynche. This does not happen automatically when used as a modal.
-
Barry Warsaw authored
-
Barry Warsaw authored
canceled() takes an optional flag so that the canceled flag can be cleared.
-
Barry Warsaw authored
deiconify(): New method
-
Barry Warsaw authored
main() so that run-as-modal doesn't automatically save database.
-
Guido van Rossum authored
-
Guido van Rossum authored
""" I had originally not realized that PyEval_GetGlobals did not INCREF it's return value. The fix is to add the INCREF, as shown below. """
-
Jack Jansen authored
-
Barry Warsaw authored
-
Barry Warsaw authored
tkColorChooser.askcolor() interface (i.e. don't return a color name even if there is an exact match).
-
Barry Warsaw authored
run either as a standalone application (by running pynche or pynche.pyw), or as a modal dialog inside another application. This can be done by importing pyColorChooser and running askcolor(). The API for this is the same as the tkColorChooser.askcolor() API, namely: When `Okay' is hit, askcolor() returns ((r, g, b), "name"). When `Cancel' is hit, askcolor() returns (None, None). Note the following differences: 1. pyColorChooser.askcolor() takes an optional keyword `master' which if set tells Pynche to run as a modal dialog. `master' is a Tkinter parent window. Without the `master' keyword Pynche runs standalone. 2. in pyColorChooser.askcolor() will return a Tk/X11 color name as "name" if there is an exact match, otherwise it will return a color spec, e.g. "#rrggbb". tkColorChooser can't return a color name. There are also some UI differences when running standalone vs. modal. When modal, there is no "File" menu, but instead there are "Okay" and "Cancel" buttons. The implementation of all this is a bit of a hack, but it seems to work moderately well. I'm not guaranteeing the pyColorChooser.Chooser class has the same semantics as the tkColorChooser.Chooser class.
-
- 21 Oct, 1998 1 commit
-
-
Guido van Rossum authored
""" Jochen Hayek has reported a problem with some versions of IMAP4 servers that choose to mix the case in their CAPABILITIES response. The patch below fixes the problem. """
-