- 30 Ara, 1997 18 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
type for all functions. However many function call PyArg_Parse() and need a 0. This is so that when they didn't change anything, the can do Py_INCREF(args); return args. Reverted this back. For atof(), there's no reason not to use PyArg_ParseTuple(), so I changed the code (atoi and atol already used that).
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Fred Drake yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
1.5, it produces Perl style syntax. Also change "Python's regular expressions" into plain "regular expression" in the intro.
-
Fred Drake yazdı
Removed implied future availability of an info/texi version of the other manuals (the word "yet"). Guido, you might want to check this file to see if any other changes are required.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
abstract. Alas, I didn't get to do anything else before the release :-(
-
Guido van Rossum yazdı
Added a warning about the incompleteness to the front. Added a reminder about CObject to the back.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
patches provided by Greg (am I glad I sent him my latest version!).
-
- 29 Ara, 1997 22 kayıt (commit)
-
-
Fred Drake yazdı
python-lib.info. The annotation is needed to prevent at least GNU make from building a second set of info files with the lib.info base name.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
for the 1.5 release version of the file.
-
Fred Drake yazdı
I'll get to it when I can.
-
Fred Drake yazdı
the info generation phases. Most of the errors had occurred in the makeinfo step. Commented out the warning at the top; this should still really be removed before 1.5, but that's not my call. It generated problems for the info conversion as well.
-
Fred Drake yazdı
-
Fred Drake yazdı
Removed BaseHTTPServer.py from list of undocumented modules.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Guido van Rossum yazdı
input. When an EOF is read, break out of the loop instead of (by default) writing an empty line (which doesn't do much good). Don't close self when falling through the loop.
-
Fred Drake yazdı
-
Guido van Rossum yazdı
DosSleep().
-
Fred Drake yazdı
-
Guido van Rossum yazdı
latest OS/2 patch set.
-
Guido van Rossum yazdı
Moved docs for "re" to before docs for "regex".
-
Fred Drake yazdı
be a dictionary...).
-
Guido van Rossum yazdı
* The invoke methods of the three Tkinter widgets Button, Checkbutton and Radiobutton should return the value returned by the callback, (like the Menu widget does): def invoke(self): return self.tk.call(self._w, 'invoke') * The select_from method of the Canvas widget should use 'from', not 'set': def select_from(self, tagOrId, index): self.tk.call(self._w, 'select', 'from', tagOrId, index) Currently, if you use select_from, you get the error message: 'TclError: bad select option "set": must be adjust, clear, from, item, or to' * The 'entrycget' and 'type' methods of the Tk menu widget are missing from Tkinter. * There is a bug in grid_columnconfigure and grid_rowconfigure. For example, this should return the current value of the 'minsize' option for column 0: f.grid_columnconfigure(0, 'minsize') Instead it returns the same as: f.grid_columnconfigure(0) I suggest that the hint given in the comment in the Tkinter.Misc.configure method should be followed - "ought to generalize this so tag_config etc. can use it". Repeating the same configure code several times in Tkinter is inviting errors. [I did not follow this advice --G] * The grid_slaves method should handle options. Currently, to pass options to the grid_slaves method, you have to do something like: grid_slaves('-row', 1)
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
and a little editing my me).
-
Fred Drake yazdı
-
Guido van Rossum yazdı
and a little editing my me).
-
Fred Drake yazdı
-