]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/python/test/operators_wrapper.py
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / python / test / operators_wrapper.py
1 from operators_wrapper_ext import *
2
3 class D2(vector): pass
4 d2 = D2()
5
6 for lhs in (v,d,d2):
7 -lhs
8 for rhs in (v,d,d2):
9 lhs + rhs
10 lhs += rhs
11