File: __init__.py

package info (click to toggle)
python3-stdlib-extensions 3.7.3-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 10,644 kB
  • sloc: python: 55,777; ansic: 7,797; makefile: 176; sh: 168
file content (13 lines) | stat: -rw-r--r-- 236 bytes parent folder | download | duplicates (30)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""distutils

The main package for the Python Module Distribution Utilities.  Normally
used from a setup script as

   from distutils.core import setup

   setup (...)
"""

import sys

__version__ = sys.version[:sys.version.index(' ')]