agronholm / pythonfutures

Backport of the concurrent.futures package to Python 2.6 and 2.7
Other
232 stars 51 forks source link

fail to transfer some div in function #87

Closed BichengWang closed 5 years ago

BichengWang commented 5 years ago

python2 code:

def integer_time(ms):
    return ms / 60 * 60

futurize -w --stage2fail to detect these kinds of div. It should become following format in python3

def integer_time(ms):
    return old_div(ms, 60) * 60
agronholm commented 5 years ago

Sorry but what does this have to do with futures?

agronholm commented 5 years ago

No explanation given in 2 weeks, probably filed against the wrong project – closing.