blob: 2546133325a3267c3718f2c3231a5ebd9039c683 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# -*- coding: utf-8 -*-
import sys
if sys.version_info.major <= 2:
raise Exception("Python 2 is not supported.")
del sys
import libpwman.database
import libpwman.dbdiff
import libpwman.exception
import libpwman.ui
import libpwman.util
import libpwman.version
from libpwman.exception import *
from libpwman.ui import *
from libpwman.version import *
|