You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
320 B
12 lines
320 B
2 years ago
|
|
||
|
try:
|
||
|
from _decimal import *
|
||
|
from _decimal import __doc__
|
||
|
from _decimal import __version__
|
||
|
from _decimal import __libmpdec_version__
|
||
|
except ImportError:
|
||
|
from _pydecimal import *
|
||
|
from _pydecimal import __doc__
|
||
|
from _pydecimal import __version__
|
||
|
from _pydecimal import __libmpdec_version__
|