mirror of
https://github.com/python/cpython.git
synced 2024-11-27 03:45:08 +08:00
a60c2fe480
Fixed 2 to 3 porting bug in pynche.ColorDB.
12 lines
320 B
Python
12 lines
320 B
Python
|
|
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__
|