rizer.misc.yaml_utils#
Shared YAML-loading helpers.
Classes#
|
Module Contents#
- class rizer.misc.yaml_utils.ScientificFloatLoader(stream)#
Bases:
yaml.SafeLoaderyaml.SafeLoaderthat also parses1e5-style numbers as float.PyYAML’s default float resolver requires a decimal point in the mantissa (
1.0e5) and treats1e5as a string. This loader extends the resolver pattern so values such as1e18or2e-3are returned as Python floats.