mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
12 lines
320 B
Python
Vendored
12 lines
320 B
Python
Vendored
|
|
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__
|