mirror of
https://github.com/boostorg/python.git
synced 2026-07-22 13:43:45 +00:00
94500ae36d
support. "self" arguments weren't getting unwrapped properly. [SVN r35365]
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
|
|
|