Changeset 350 for pyyaml/trunk/tests
- Timestamp:
- 08/29/09 15:15:31 (3 years ago)
- Location:
- pyyaml/trunk/tests
- Files:
-
- 1 added
- 2 modified
-
data/aliases-cdumper-bug.code (added)
-
lib/test_constructor.py (modified) (2 diffs)
-
lib3/test_constructor.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/tests/lib/test_constructor.py
r330 r350 18 18 AnObject, AnInstance, AState, ACustomState, InitArgs, InitArgsWithState, \ 19 19 NewArgs, NewArgsWithState, Reduce, ReduceWithState, MyInt, MyList, MyDict, \ 20 FixedOffset, execute20 FixedOffset, today, execute 21 21 22 22 class MyLoader(yaml.Loader): … … 213 213 def dst(self, dt): 214 214 return datetime.timedelta(0) 215 216 today = datetime.date.today() 215 217 216 218 def _load_code(expression): -
pyyaml/trunk/tests/lib3/test_constructor.py
r330 r350 15 15 AnObject, AnInstance, AState, ACustomState, InitArgs, InitArgsWithState, \ 16 16 NewArgs, NewArgsWithState, Reduce, ReduceWithState, MyInt, MyList, MyDict, \ 17 FixedOffset, execute17 FixedOffset, today, execute 18 18 19 19 class MyLoader(yaml.Loader): … … 200 200 def dst(self, dt): 201 201 return datetime.timedelta(0) 202 203 today = datetime.date.today() 202 204 203 205 def _load_code(expression):
