Caffe2 - Python API
A deep learning, cross platform ML framework
future_div.py
1 from __future__ import division
2 import torch
3 
4 
5 def div_int_future():
6  return 1 / 2
7 
8 
9 def div_float_future():
10  return 3.14 / 0.125