summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/rename_pcre_encoder_runme.py
blob: 1186703a08b855969852ecac281824e5772101e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from rename_pcre_encoder import *

s = SomeWidget()
s.putBorderWidth(3)
if s.getBorderWidth() != 3:
    raise RuntimeError("Border should be 3, not %d" % (s.getBorderWidth(),))

s.putSize(4, 5)
a = AnotherWidget()
a.DoSomething()

evt = wxEVTSomeEvent()
t   = xUnchangedName()