- 01 Kas, 1998 2 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
fixes. Input sources are mutually exclusive.
-
- 31 Eki, 1998 3 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
device and control pseudo-device: - first look for the device filename in the environment variable AUDIODEV. - if not found, use /dev/audio - calculate the control device by tacking "ctl" onto the base device name. We now do this. Also, if the open fails, we call PyErr_SetFromErrnoWithFilename() to give a more informative error message. Added a fileno() method to the audio object returned from open(). This returns the file descriptor which can be used by applications to set up SIGPOLL notification, as per the manpage.
-
Barry Warsaw yazdı
-
- 30 Eki, 1998 3 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
- 28 Eki, 1998 5 kayıt (commit)
-
-
Fred Drake yazdı
HTML version. Give a reference to the actual section to allow a hyperlink to be built.
-
Fred Drake yazdı
-
Andrew M. Kuchling yazdı
Corrected error: {,5} is not equivalent to {0,5}.
-
Barry Warsaw yazdı
generalize the matching of function arguments.
-
Barry Warsaw yazdı
#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 Eki, 1998 3 kayıt (commit)
-
-
Barry Warsaw yazdı
#checkin script.
-
Fred Drake yazdı
Switch from bash to ksh, in the hope that more systems support it (one report of a site without an available bash).
-
Barry Warsaw yazdı
-
- 26 Eki, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 24 Eki, 1998 11 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
next week. :-)
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Different action on WM_DELETE_WINDOW is more likely to do the right thing, allowing us to destroy old windows.
-
Guido van Rossum yazdı
using Canvas coordinates, and goto() uses turtle coordinates and accepts variable argument lists.
-
Guido van Rossum yazdı
unlink() or fdopen() fail, close the file descriptor and re-raise the exception.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
values (4.7.1) should return l, not a. Reported by Axel Boldt.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
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 yazdı
-
- 22 Eki, 1998 12 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
own version.
-
Guido van Rossum yazdı
""" 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 yazdı
Added a To Do list.
-
Barry Warsaw yazdı
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 yazdı
-
Barry Warsaw yazdı
canceled() takes an optional flag so that the canceled flag can be cleared.
-
Barry Warsaw yazdı
deiconify(): New method
-
Barry Warsaw yazdı
main() so that run-as-modal doesn't automatically save database.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
""" 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 yazdı
-