summaryrefslogtreecommitdiff
path: root/pylint/test/regrtest_data/package/__init__.py
blob: d94c9fccbd8200d0d8c80308e9a0afc06b33014d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# pylint: disable=R0903,W0403
"""package's __init__ file"""

from . import subpackage

__revision__ = 0

# E0602 - Undefined variable '__path__'
__path__ += "folder"

class AudioTime(object):
    """test precedence over the AudioTime submodule"""

    DECIMAL = 3