Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
041a51b596c1f94c90029afb3bf2b8074fdefea3
/
.
/
Mac
/
Lib
/
test
/
test_setcontroldata.py
blob: c46e6134d1c1a524f1ab00d26c102e52afb4f352 [
file
]
import
W
from
Controls
import
*
w
=
W
.
Window
((
200
,
200
),
"Test"
)
w
.
c
=
W
.
Button
((
5
,
5
,
100
,
50
),
"Test"
)
w
.
open
()
print
repr
(
w
.
c
.
_control
.
GetControlData
(
0
,
'dflt'
))
str
=
'\001'
w
.
c
.
_control
.
SetControlData
(
0
,
'dflt'
,
str
)