src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/AstUtilities.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9221
bf71ee032bb4
child 9653
e67609152c5e
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
6 """ 6 """
7 Module implementing some utility and compatibility functions for working with 7 Module implementing some utility and compatibility functions for working with
8 the ast module. 8 the ast module.
9 """ 9 """
10 10
11 import ast
11 import sys 12 import sys
12 import ast
13 13
14 if sys.version_info >= (3, 8, 0): 14 if sys.version_info >= (3, 8, 0):
15 # functions for Python >= 3.8 15 # functions for Python >= 3.8
16 16
17 import numbers 17 import numbers

eric ide

mercurial