small wrapper to use cdecimal library if available.

This commit is contained in:
Scott Wolchok
2011-02-25 03:14:28 -05:00
parent bf417f0569
commit f64c28b1b4
+4
View File
@@ -0,0 +1,4 @@
try:
from cdecimal import *
except ImportError:
from decimal import *