- 29 Agu, 1997 11 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
started with the -X option. This file contains the definitions for the built-in exception classes.
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
for the built-in module.
-
Barry Warsaw yazdı
PyExc_NumberError, and PyExc_LookupError. Also added extern for pre-instantiated exception instance PyExc_MemoryErrorInst. Removed extern of obsolete exception PyExc_AccessError.
-
Barry Warsaw yazdı
(PyExc_MemoryErrorInst) raise this instead of PyExc_MemoryError. This only happens when exception classes are enabled (e.g. when Python is started with -X).
-
Barry Warsaw yazdı
the executable to use during regression testing.
-
Guido van Rossum yazdı
when building outside the source directory. Courtesy Donn Cave.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
of co/cp mixup.
-
- 28 Agu, 1997 8 kayıt (commit)
-
-
Barry Warsaw yazdı
former rather than the latter, since PyErr_NormalizeException takes PyObject** and I didn't want to change the interface for set_exc_info (but I did want the changes propagated to eval_code2!).
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Removed bootstrap script from end of faqwiz.py module. Added instructions to bootstrap script, too. Version bumped to 0.8. Added <html>...</html> feature suggested by Skip Montanaro. Added leading text for Roulette, default to 'Hit Reload ...'. Fix typo in default SRCDIR.
-
- 27 Agu, 1997 9 kayıt (commit)
-
-
Guido van Rossum yazdı
longer relevant.
-
Guido van Rossum yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
up anything else I saw.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
- 26 Agu, 1997 8 kayıt (commit)
-
-
Guido van Rossum yazdı
Added a minimal test function.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
that multiple retrievals using the same connection will work. This leaves open the more general problem that after f = urlopen("ftp://...") f must be closed before another retrieval from the same host should be attempted.
-
Barry Warsaw yazdı
compares to test for SystemExit and SyntaxError.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
fixes (or masks?) a bug with Python becoming unreactive during time.sleep() if you have already switched applications before.
-
Guido van Rossum yazdı
-
- 25 Agu, 1997 4 kayıt (commit)
-
-
Barry Warsaw yazdı
evaluating its arguments twice.
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
UNPACK_LIST byte codes and added a third code path that allows generalized sequence unpacking. Now both syntaxes: a, b, c = seq [a, b, c] = seq can be used to unpack any sequence with the exact right number of items. unpack_sequence(): out-lined implementation of generalized sequence unpacking. tuple and list unpacking are still inlined.
-