These tests were converted using 2to3 and should be valid using Python 2.7 and Python 3+.
7 lines
108 B
Python
7 lines
108 B
Python
from using_protected import *
|
|
|
|
f = FooBar()
|
|
f.x = 3
|
|
|
|
if f.blah(4) != 4:
|
|
raise RuntimeError("blah(int)")
|