- 06 May, 1998 8 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
contain multiple words, all of which may have to be joined with the path of the extension directory. (Sjoerd)
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Fred Drake yazdı
reported to me by Piers Lauder <piers@cs.su.oz.au>.
-
- 05 May, 1998 5 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
as soon as I change things even just a little bit? :-) Even works when accessing a password-protected page through the proxy. Prompted by complaints from, and correct operation verified by, Nigel O'Brian.
-
Guido van Rossum yazdı
servers support LOGIN but don't advertise it. If it's not supported the protocol will respond NO. Approved by Piers Lauder.
-
- 02 May, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
to work reliably (at least I wouldn't know how).
-
- 01 May, 1998 2 kayıt (commit)
-
-
Guido van Rossum yazdı
wm_title(), etc. The old names (title() etc.) are still defined as aliases. This brings all methods up to use the same naming convention: whether the Tcl syntax is .window.path.name command subcommand [options] or command subcommand .window.path.name [optins] the Python equivalent is always windowobject.command_subcommand(options)
-
Guido van Rossum yazdı
-
- 30 Nis, 1998 2 kayıt (commit)
-
-
Guido van Rossum yazdı
calling self.tk.getint() and self.tk.getdouble(), call the globals getint() and getdouble(), which in turn are just names for the Python builtins int() and double(). (Making them globals actually save a dict lookup compared to using the built-in.) The corresponding methods of class Misc have been changed similarly. (Note that getboolean() hasn't been changed because there's no Python equivalent.) The use of int() and float() has another advantage: if/when Tcl calls can actually return Tcl objects with other types than string, use of int() and float() is essential.
-
Guido van Rossum yazdı
-
- 29 Nis, 1998 12 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
not needed to say apply(self.tk.call, t); self.tk.call(t) has the same effect. This cuts down tremendously on the number of apply() calls made. No measurable effect, but at the very least it saves the lookup of apply() in the globals!
-
Guido van Rossum yazdı
repeats the I/O for the failed import on each interpreter creation.
-
Fred Drake yazdı
-
Guido van Rossum yazdı
symlink to a symlink can work. (Jack)
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Guido van Rossum yazdı
most common interface to Tcl, the call() method, by maybe 20-25%. The speedup code avoids the construction of a Tcl command string from the argument list -- the Tcl argument list is immediately parsed back by Tcl_Eval() into a list that is *guaranteed* (by Tcl_Merge()) to be exactly the same list, so instead we look up the command info and call the command function directly. If the lookup fails, we fall back to the old method (Tcl_Merge() + Tcl_Eval()) so we don't need to worry about special cases like undefined commands or the occasional command ("after") that sets the info.proc pointer to NULL -- let TclEval() deal with these.
-
Guido van Rossum yazdı
the address of the Tcl interpreter object, as an integer. Not very useful for the Python programmer, but this can be called by another C extension that needs to make calls into the Tcl/Tk C API and needs to get the address of the Tcl interpreter object. A simple cast of the return value to (Tcl_Interp *) will do the trick now.
-
Fred Drake yazdı
<jafo-9804@tummy.com>. Logical markup.
-
Guido van Rossum yazdı
and release() instead.
-
Fred Drake yazdı
Fixed a memory leak in an error handler.
-
- 28 Nis, 1998 10 kayıt (commit)
-
-
Fred Drake yazdı
being in the current directory. Be more careful cleaning up. Correct an error in a comment. Add recent additions to the dependencies for lib.dvi.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
Removed some old stuff. Do better hiding of internal names.
-
Fred Drake yazdı
-
Fred Drake yazdı
Added bisect entry.
-
Fred Drake yazdı
-
Guido van Rossum yazdı
-