72b06e70ee
[SVN r35366]
12 lines
164 B
Python
12 lines
164 B
Python
from operators_wrapper_ext import *
|
|
|
|
class D2(vector): pass
|
|
d2 = D2()
|
|
|
|
for lhs in (v,d,d2):
|
|
-lhs
|
|
for rhs in (v,d,d2):
|
|
lhs + rhs
|
|
lhs += rhs
|
|
|