- 29 Aug, 1997 5 commits
-
-
Barry Warsaw authored
(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 authored
the executable to use during regression testing.
-
Guido van Rossum authored
when building outside the source directory. Courtesy Donn Cave.
-
Guido van Rossum authored
-
Guido van Rossum authored
of co/cp mixup.
-
- 28 Aug, 1997 8 commits
-
-
Barry Warsaw authored
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 authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
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 Aug, 1997 9 commits
-
-
Guido van Rossum authored
longer relevant.
-
Guido van Rossum authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
up anything else I saw.
-
Jack Jansen authored
-
Jack Jansen authored
-
- 26 Aug, 1997 8 commits
-
-
Guido van Rossum authored
Added a minimal test function.
-
Guido van Rossum authored
-
Guido van Rossum authored
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 authored
compares to test for SystemExit and SyntaxError.
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
fixes (or masks?) a bug with Python becoming unreactive during time.sleep() if you have already switched applications before.
-
Guido van Rossum authored
-
- 25 Aug, 1997 9 commits
-
-
Barry Warsaw authored
evaluating its arguments twice.
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
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.
-
Guido van Rossum authored
-
Guido van Rossum authored
former lets you give an instance a set of new instance vars. The latter lets you give it a new class. Both are typechecked and disallowed in restricted mode. For classes, the check for read-only special attributes is tightened so that only assignments to __dict__, __bases__, __name__, __getattr__, __setattr__, and __delattr__ (these could be made to work as well, but I don't know if that's useful -- let's see first whether mucking with instances will help).
-
Guido van Rossum authored
sys/types.h header on many systems that may get pulled in (through WANT_SIGFPE_HANDLER which pulls in signal.h).
-
Guido van Rossum authored
docstring conversion).
-
Guido van Rossum authored
-
- 23 Aug, 1997 1 commit
-
-
Guido van Rossum authored
-