eric6/Utilities/ClassBrowsers/pyclbr.py

changeset 7781
607a6098cb44
parent 7699
d338c533f5f0
child 7836
2f0d208b8137
equal deleted inserted replaced
7780:41420f82c0ac 7781:607a6098cb44
7 Parse a Python file and retrieve classes, functions/methods and attributes. 7 Parse a Python file and retrieve classes, functions/methods and attributes.
8 8
9 Parse enough of a Python file to recognize class and method definitions and 9 Parse enough of a Python file to recognize class and method definitions and
10 to find out the superclasses of a class as well as its attributes. 10 to find out the superclasses of a class as well as its attributes.
11 """ 11 """
12
13 12
14 import sys 13 import sys
15 import re 14 import re
16 from functools import reduce 15 from functools import reduce
17 16

eric ide

mercurial