Sign in
android
/
platform
/
external
/
python
/
eed60d8fa4f90b8ef28adfd3e6616bd98aeff26d
/
.
/
Mac
/
Lib
/
test
/
test_setcontroldata.py
blob: 81672145ac48a28b2719d342998eedb66e3fbc36 [
file
] [
log
] [
blame
]
import
W
from
Carbon
.
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
)