comparison: eric6/Utilities/ClassBrowsers/pyclbr.py
eric6/Utilities/ClassBrowsers/pyclbr.py
- changeset 7229
- 53054eb5b15a
- parent 6942
- 2602857055c5
- child 7249
- 0bf517e60f54
equal
deleted
inserted
replaced
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 This is module is based on pyclbr found in the Python 2.2.2 distribution. |
12 This is module is based on pyclbr found in the Python 2.2.2 distribution. |
13 """ |
13 """ |
14 |
14 |
15 |
|
16 from __future__ import unicode_literals |
|
17 |
15 |
18 import sys |
16 import sys |
19 import imp |
17 import imp |
20 import re |
18 import re |
21 |
19 |