Changeset 329 for pyyaml/trunk/tests3/test_recursive.py
- Timestamp:
- 12/29/08 13:11:08 (3 years ago)
- Files:
-
- 1 modified
-
pyyaml/trunk/tests3/test_recursive.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/tests3/test_recursive.py
r328 r329 24 24 25 25 def test_recursive(recursive_filename, verbose=False): 26 exec(open(recursive_filename, 'rb').read()) 27 value1 = value 26 context = globals().copy() 27 exec(open(recursive_filename, 'rb').read(), context) 28 value1 = context['value'] 28 29 output1 = None 29 30 value2 = None
