4539:beac8323fa9e | 4541:e8ddd9d76414 |
---|---|
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 } |