File: gmpy_truediv.py

package info (click to toggle)
python-gmpy 1.11-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 752 kB
  • ctags: 756
  • sloc: ansic: 10,001; python: 5,514; makefile: 36
file content (5 lines) | stat: -rw-r--r-- 126 bytes parent folder | download | duplicates (13)
1
2
3
4
5
''' make a "true division" function available for testing '''

from __future__ import division

def truediv(a, b): return a/b