- 28 Agu, 1997 3 kayıt (commit)
-
-
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 9 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.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
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 yazdı
sys/types.h header on many systems that may get pulled in (through WANT_SIGFPE_HANDLER which pulls in signal.h).
-
Guido van Rossum yazdı
docstring conversion).
-
Guido van Rossum yazdı
-
- 23 Agu, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 22 Agu, 1997 10 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
PyErr_GivenExceptionMatches(). set_exc_info(): make sure to normalize exceptions. do_raise(): Use PyErr_NormalizeException() if type is a class. loop_subscript(): Use PyErr_ExceptionMatches() instead of raw pointer compare for PyExc_IndexError.
-
Barry Warsaw yazdı
- int PyErr_GivenExceptionMatches(obj1, obj2) Returns 1 if obj1 and obj2 are the same object, or if obj1 is an instance of type obj2, or of a class derived from obj2 - int PyErr_ExceptionMatches(obj) Higher level wrapper around PyErr_GivenExceptionMatches() which uses PyErr_Occurred() as obj1. This will be the more commonly called function. - void PyErr_NormalizeException(typeptr, valptr, tbptr) Normalizes exceptions, and places the normalized values in the arguments. If type is not a class, this does nothing. If type is a class, then it makes sure that value is an instance of the class by: 1. if instance is of the type, or a class derived from type, it does nothing. 2. otherwise it instantiates the class, using the value as an argument. If value is None, it uses an empty arg tuple, and if the value is a tuple, it uses just that.
-
Barry Warsaw yazdı
classes as their second arguments. The former takes a class as the first argument and returns true iff first is second, or is a subclass of second. The latter takes any object as the first argument and returns true iff first is an instance of the second, or any subclass of second. Also, change all occurances of pointer compares against PyExc_IndexError with PyErr_ExceptionMatches() calls.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
the executable must have that suffix. Note that there is no corresponding support in the top-level Makefile because I'm not sure that the install targets there make sense under these circumstances.
-
Guido van Rossum yazdı
-
Fred Drake yazdı
-