blob: c9c575a89c0b26e79c3a1da636169c71988f83d1 (
about) (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from fixedint.base import FixedInt, MutableFixedInt
from fixedint.aliases import *
def test(verbosity=1, repeat=1):
from fixedint import test_fixedint
return test_fixedint.run(verbosity, repeat)
|