small wrapper to use cdecimal library if available.

This commit is contained in:
Scott Wolchok 2011-02-25 03:10:29 -05:00
parent bf417f0569
commit f64c28b1b4

4
pyfpdb/decimal.py Normal file
View File

@ -0,0 +1,4 @@
try:
from cdecimal import *
except ImportError:
from decimal import *