/test2/gmpy_truediv.py
Python | 5 lines | 5 code | 0 blank | 0 comment | 0 complexity | f81509ddd481d5c7a91c6eedc444be19 MD5 | raw file
Possible License(s): GPL-3.0, LGPL-3.0, LGPL-2.1
- ''' make a "true division" function available for testing '''
- from __future__ import division
- def truediv(a, b): return a/b