diff -r 3fc8dfeb6ebe -r b99e7fd55fd3 src/eric7/DocumentationTools/__init__.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/eric7/DocumentationTools/__init__.py Thu Jul 07 11:23:56 2022 +0200 @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2003 - 2022 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Package implementing the source code documentation tools. +""" + +supportedExtensionsDictForApis = { + "Python3": [".py", ".pyw", ".py3", ".pyw3"], + "Ruby": [".rb"] +}