diff options
author | Rolf Wojtech <rolf@wojtech.de> | 2018-03-21 16:37:39 +0100 |
---|---|---|
committer | Rolf Wojtech <rolf@wojtech.de> | 2018-03-21 16:37:39 +0100 |
commit | 66b44b72d4be2a975c45d1d84bec80b10e3184da (patch) | |
tree | 65771d2bb573ed20a6f545dbb23fb3d6581a1e8c /_test/test_float.py | |
parent | 0bda7fa8499b6c802d6246435524b839e9a8ba4c (diff) | |
download | ruamel.yaml-66b44b72d4be2a975c45d1d84bec80b10e3184da.tar.gz |
Attempted fix for scientic notation parsing
Diffstat (limited to '_test/test_float.py')
-rw-r--r-- | _test/test_float.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/_test/test_float.py b/_test/test_float.py index f9d060d..3fda083 100644 --- a/_test/test_float.py +++ b/_test/test_float.py @@ -134,6 +134,17 @@ class TestFloat: - 250e6 """) + def test_round_trip_exp_05(self): + data = round_trip("""\ + - 3.0517578123e-56 + - 3.0517578123E-56 + - 3.0517578123e-056 + - 3.0517578123E-056 + """) + print(data) + for d in data: + assert 3.0517578122e-56 < d < 3.0517578124e-56 + def test_yaml_1_1_no_dot(self): with pytest.warns(MantissaNoDotYAML1_1Warning): round_trip_load("""\ |