4540:45627d092846 | 4543:2e6a880670e9 |
---|---|
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 | |
10 supportedExtensionsDictForApis = { | 12 supportedExtensionsDictForApis = { |
11 "Python2": [".py2", ".pyw2", ".ptl"], | 13 "Python2": [".py2", ".pyw2", ".ptl"], |
12 "Python3": [".py", ".pyw", ".py3", ".pyw3"], | 14 "Python3": [".py", ".pyw", ".py3", ".pyw3"], |
13 "Ruby": [".rb"] | 15 "Ruby": [".rb"] |
14 } | 16 } |