Changeset 170
- Timestamp:
- 05/21/06 03:26:05 (2 years ago)
- Files:
-
- pyyaml/trunk/lib/yaml/constructor.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pyyaml/trunk/lib/yaml/constructor.py
r168 r170 259 259 return sign*value 260 260 else: 261 return float(value)261 return sign*float(value) 262 262 263 263 def construct_yaml_binary(self, node):
