Changeset 328 for pyyaml/trunk/tests3/test_representer.py
- Timestamp:
- 12/29/08 12:24:05 (4 years ago)
- Location:
- pyyaml/trunk/tests3
- Files:
-
- 1 edited
- 1 copied
-
. (copied) (copied from pyyaml/trunk/tests)
-
test_representer.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/tests3/test_representer.py
r322 r328 21 21 value2 = test_constructor._serialize_value(native2) 22 22 if verbose: 23 print "SERIALIZED NATIVE1:"24 print value125 print "SERIALIZED NATIVE2:"26 print value223 print("SERIALIZED NATIVE1:") 24 print(value1) 25 print("SERIALIZED NATIVE2:") 26 print(value2) 27 27 assert value1 == value2, (native1, native2) 28 28 finally: 29 29 if verbose: 30 print "NATIVE1:"30 print("NATIVE1:") 31 31 pprint.pprint(native1) 32 print "NATIVE2:"32 print("NATIVE2:") 33 33 pprint.pprint(native2) 34 print "OUTPUT:"35 print output34 print("OUTPUT:") 35 print(output) 36 36 37 37 test_representer_types.unittest = ['.code']
Note: See TracChangeset
for help on using the changeset viewer.
