File: __init__.py

package info (click to toggle)
python-stdlib-list 0.11.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 512 kB
  • sloc: makefile: 203; python: 199
file content (18 lines) | stat: -rw-r--r-- 351 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
__version__ = "0.11.1"

# Import all the things that used to be in here for backwards-compatibility reasons
from .base import (
    get_canonical_version,
    in_stdlib,
    long_versions,
    short_versions,
    stdlib_list,
)

__all__ = [
    "stdlib_list",
    "in_stdlib",
    "get_canonical_version",
    "short_versions",
    "long_versions",
]