DocumentationTools/__init__.py

changeset 4555
861e1741985c
parent 4543
2e6a880670e9
child 4631
5c1a96925da4
equal deleted inserted replaced
4554:f3428ddd577c 4555:861e1741985c
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

eric ide

mercurial