5 |
5 |
6 """ |
6 """ |
7 Package implementing the source code documentation tools. |
7 Package implementing the source code documentation tools. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals |
|
11 |
|
12 supportedExtensionsDictForApis = { |
10 supportedExtensionsDictForApis = { |
13 "Python2": [".py2", ".pyw2", ".ptl"], |
11 "Python2": [".py2", ".pyw2", ".ptl"], |
14 "Python3": [".py", ".pyw", ".py3", ".pyw3"], |
12 "Python3": [".py", ".pyw", ".py3", ".pyw3"], |
15 "Ruby": [".rb"] |
13 "Ruby": [".rb"] |
16 } |
14 } |
|
15 |
|
16 # |
|
17 # eflag: noqa = M702 |