Changeset 170 for pyyaml/trunk/lib/yaml
- Timestamp:
- 05/21/06 03:26:05 (6 years ago)
- Files:
-
- 1 modified
-
pyyaml/trunk/lib/yaml/constructor.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
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):
