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

__revision__ = 0

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

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

    DECIMAL = 3

from . import subpackage