File: __init__.py

package info (click to toggle)
yuma123 2.14-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 22,436 kB
  • sloc: ansic: 185,144; cpp: 10,968; python: 7,990; sh: 2,676; makefile: 1,175; xml: 807; exp: 776; perl: 70
file content (9 lines) | stat: -rw-r--r-- 158 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
import sys
from .yangcli import yangcli

if sys.version_info < (2, 6):
	raise RuntimeError('You need Python 2.6+ for this module.')

__all__ = [
	'yangcli'
]