Caffe2 - Python API
A deep learning, cross platform ML framework
no_future_div.py
1 import torch
2 
3 
4 def div_int_nofuture():
5  return 1 / 2
6 
7 
8 def div_float_nofuture():
9  return 3.14 / 0.125