summaryrefslogtreecommitdiffstats
path: root/Lib/plat-irix5/panel.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-01-23 13:45:17 (GMT)
committerGuido van Rossum <guido@python.org>1991-01-23 13:45:17 (GMT)
commit220d9f1449f7550f314b4a65034114654d21dbf9 (patch)
tree152f2df8506df84b70338d767d72ca53085f5a67 /Lib/plat-irix5/panel.py
parent52cea4309776acc91ff63dd1892ba95d0415e84f (diff)
downloadcpython-220d9f1449f7550f314b4a65034114654d21dbf9.zip
cpython-220d9f1449f7550f314b4a65034114654d21dbf9.tar.gz
cpython-220d9f1449f7550f314b4a65034114654d21dbf9.tar.bz2
The parser module is now called paenlparser.
Diffstat (limited to 'Lib/plat-irix5/panel.py')
-rwxr-xr-xLib/plat-irix5/panel.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/plat-irix5/panel.py b/Lib/plat-irix5/panel.py
index eb11508..9fda1c6 100755
--- a/Lib/plat-irix5/panel.py
+++ b/Lib/plat-irix5/panel.py
@@ -152,7 +152,7 @@ def build_actuator(descr):
act = pnl.mkact(type)
act.downfunc = act.activefunc = act.upfunc = dummy_callback
#
- assign_members(act, descr[1:], ('al', 'data', 'name'), '')
+ assign_members(act, descr[1:], ['al', 'data', 'name'], '')
#
# Treat actuator-specific data
#
@@ -162,7 +162,7 @@ def build_actuator(descr):
prefix = 'puck_'
elif type = 'mouse':
prefix = 'mouse_'
- assign_members(act, datalist, (), prefix)
+ assign_members(act, datalist, [], prefix)
#
return act, actuatorname
@@ -218,7 +218,7 @@ def build_panel(descr):
#
# Assign panel attributes
#
- assign_members(panel, descr[1:], ('al'), '')
+ assign_members(panel, descr[1:], ['al'], '')
#
# Look for actuator list
#
@@ -264,8 +264,8 @@ def my_dopanel():
# generated by the Panel Editor.
#
def defpanellist(file):
- import parser
- descrlist = parser.parse_file(open(file, 'r'))
+ import panelparser
+ descrlist = panelparser.parse_file(open(file, 'r'))
panellist = []
for descr in descrlist:
panellist.append(build_panel(descr))