aboutsummaryrefslogtreecommitdiffstats
path: root/library/python/svn_version/__init__.py
blob: b5c05d6bc06dcf2cd4197ce94058ade151674a38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from .__svn_version import (
    svn_version,
    commit_id,
    svn_revision,
    svn_last_revision,
    hash,
    svn_branch,
    svn_tag,
    patch_number,
    vcs,
    svn_timestamp,
)

__all__ = (
    'svn_version',
    'commit_id',
    'svn_revision',
    'svn_last_revision',
    'hash',
    'svn_branch',
    'svn_tag',
    'patch_number',
    'vcs',
    'svn_timestamp',
)