diff options
author | Batuhan Taskaya <batuhanosmantaskaya@gmail.com> | 2020-10-04 00:46:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-04 00:46:44 (GMT) |
commit | e799aa8b92c195735f379940acd9925961ad04ec (patch) | |
tree | a0308940ce67e0535be861bfc94f3d830bba6734 /Lib/test/test_ast.py | |
parent | 7f54e563dc150cd670ca8df678437455c3a7f2cd (diff) | |
download | cpython-e799aa8b92c195735f379940acd9925961ad04ec.zip cpython-e799aa8b92c195735f379940acd9925961ad04ec.tar.gz cpython-e799aa8b92c195735f379940acd9925961ad04ec.tar.bz2 |
bpo-41887: omit leading spaces/tabs on ast.literal_eval (#22469)
Also document that eval() does this (the same way).
Diffstat (limited to 'Lib/test/test_ast.py')
-rw-r--r-- | Lib/test/test_ast.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py index 5f57ce8..be4b0f7 100644 --- a/Lib/test/test_ast.py +++ b/Lib/test/test_ast.py @@ -1005,6 +1005,12 @@ Module( malformed = ast.Dict(keys=[ast.Constant(1)], values=[ast.Constant(2), ast.Constant(3)]) self.assertRaises(ValueError, ast.literal_eval, malformed) + def test_literal_eval_trailing_ws(self): + self.assertEqual(ast.literal_eval(" -1"), -1) + self.assertEqual(ast.literal_eval("\t\t-1"), -1) + self.assertEqual(ast.literal_eval(" \t -1"), -1) + self.assertRaises(IndentationError, ast.literal_eval, "\n -1") + def test_bad_integer(self): # issue13436: Bad error message with invalid numeric values body = [ast.ImportFrom(module='time', |