diff options
author | Moshe Zadka <moshez@math.huji.ac.il> | 2001-01-29 06:21:17 (GMT) |
---|---|---|
committer | Moshe Zadka <moshez@math.huji.ac.il> | 2001-01-29 06:21:17 (GMT) |
commit | 497671e094b7f18221cc1f872bfe68afc57c860b (patch) | |
tree | 82c5fb1c0b85a8670c71c9146ee9c5b34c08a43e /Lib/test/test_opcodes.py | |
parent | 2beeb22533acf5fbc29e650003a79d633aecffc0 (diff) | |
download | cpython-497671e094b7f18221cc1f872bfe68afc57c860b.zip cpython-497671e094b7f18221cc1f872bfe68afc57c860b.tar.gz cpython-497671e094b7f18221cc1f872bfe68afc57c860b.tar.bz2 |
The one thing I love more then writing code is deleting code.
* Removed func_hash and func_compare, so they can be treated as immutable
content-less objects (address hash and comparison)
* Added tests to that affect to test_funcattrs (also testing func_code
is writable)
* Reverse meaning of tests in test_opcodes which checked identical code
gets identical functions
Diffstat (limited to 'Lib/test/test_opcodes.py')
-rw-r--r-- | Lib/test/test_opcodes.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Lib/test/test_opcodes.py b/Lib/test/test_opcodes.py index 5381e4d..31569d5 100644 --- a/Lib/test/test_opcodes.py +++ b/Lib/test/test_opcodes.py @@ -50,12 +50,12 @@ b = BClass() try: raise AClass, b except BClass, v: - if v != b: raise TestFailed -else: raise TestFailed + if v != b: raise TestFailed, "v!=b" +else: raise TestFailed, "no exception" try: raise b except AClass, v: - if v != b: raise TestFailed + if v != b: raise TestFailed, "v!=b AClass" # not enough arguments try: raise BClass, a @@ -64,21 +64,21 @@ except TypeError: pass try: raise DClass, a except DClass, v: if not isinstance(v, DClass): - raise TestFailed + raise TestFailed, "v not DClass" print '2.3 comparing function objects' f = eval('lambda: None') g = eval('lambda: None') -if f != g: raise TestFailed +if f == g: raise TestFailed, "functions should not be same" f = eval('lambda a: a') g = eval('lambda a: a') -if f != g: raise TestFailed +if f == g: raise TestFailed, "functions should not be same" f = eval('lambda a=1: a') g = eval('lambda a=1: a') -if f != g: raise TestFailed +if f == g: raise TestFailed, "functions should not be same" f = eval('lambda: 0') g = eval('lambda: 1') |