- 09 Ara, 2001 1 kayıt (commit)
-
-
Finn Bock yazdı
the output fails to compare correctly for jython. This change was part of the original patch #403666.
-
- 23 Mar, 2001 1 kayıt (commit)
-
-
Barry Warsaw yazdı
#403666. Specifically, In codestr, force `c' to be global. It's unclear what the semantics should be for a code object compiled at module scope, but bound and run in a function. In CPython, `c' is global (by accident?) while in Jython, `c' is local. The intent of the test clearly is to make `c' global, so let's be explicit about it. Jython also does not have a __builtins__ name in the module's namespace, so we use a more portable alternative (though I'm not sure why the test requires "__builtins__" in the g namespace). Finally, skip the new.code() test if the new module doesn't have a `code' attribute. Jython will never have this.
-
- 09 Şub, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 01 Şub, 2001 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
- 28 Ock, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
Use test_support.verify() where applicable.
-
- 25 Ock, 2001 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
test_new: new.code() noew takes two more arguments test_grammer: Add a bunch of test cases for lambda (not really PEP 227 related)
-
- 17 Ock, 2001 2 kayıt (commit)
-
-
Fredrik Lundh yazdı
'verify' iff it's used by a test module...
-
Marc-André Lemburg yazdı
and replaces them with a new API verify(). As a result the regression suite will also perform its tests in optimization mode. Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum.
-
- 12 Ara, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects.
-
- 26 Mar, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 27 Ock, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 17 Ock, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 23 Ara, 1996 1 kayıt (commit)
-
-
Barry Warsaw yazdı
test_*: converted to the new test harness. GvR note! test_signal.py works interatively (i.e. when verbose=1) but does not work inside the test harness. It must be a timing issue, but I haven't figured it out yet.
-
- 10 Ara, 1996 1 kayıt (commit)
-
-
Barry Warsaw yazdı
I'm really not sure what the proper inputs are. I do flex the function call though by passing in arguments of the proper type. I don't try to exec the code object that gets returned!
-