allow it to start when cdecimal is missing
This commit is contained in:
parent
145a4a6cb2
commit
140ad6be5f
|
@ -38,7 +38,12 @@ import sys
|
||||||
import traceback
|
import traceback
|
||||||
from datetime import datetime, date, time, timedelta
|
from datetime import datetime, date, time, timedelta
|
||||||
from time import time, strftime, sleep
|
from time import time, strftime, sleep
|
||||||
from decimal import Decimal
|
|
||||||
|
try:
|
||||||
|
from cdecimal import *
|
||||||
|
except ImportError:
|
||||||
|
from decimal import *
|
||||||
|
|
||||||
import string
|
import string
|
||||||
import re
|
import re
|
||||||
import Queue
|
import Queue
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
try:
|
|
||||||
from cdecimal import *
|
|
||||||
except ImportError:
|
|
||||||
from decimal import *
|
|
Loading…
Reference in New Issue
Block a user