Home | History | Annotate | Download | only in _builtinSuites

Lines Matching refs:_arguments

12     def open(self, _object, _attributes={}, **_arguments):
20 if _arguments: raise TypeError, 'No optional args expected'
21 _arguments['----'] = _object
24 _reply, _arguments, _attributes = self.send(_code, _subcode,
25 _arguments, _attributes)
26 if _arguments.get('errn', 0):
27 raise aetools.Error, aetools.decodeerror(_arguments)
29 if _arguments.has_key('----'):
30 return _arguments['----']
32 def run(self, _no_object=None, _attributes={}, **_arguments):
39 if _arguments: raise TypeError, 'No optional args expected'
43 _reply, _arguments, _attributes = self.send(_code, _subcode,
44 _arguments, _attributes)
45 if _arguments.get('errn', 0):
46 raise aetools.Error, aetools.decodeerror(_arguments)
48 if _arguments.has_key('----'):
49 return _arguments['----']
51 def reopen(self, _no_object=None, _attributes={}, **_arguments):
58 if _arguments: raise TypeError, 'No optional args expected'
62 _reply, _arguments, _attributes = self.send(_code, _subcode,
63 _arguments, _attributes)
64 if _arguments.get('errn', 0):
65 raise aetools.Error, aetools.decodeerror(_arguments)
67 if _arguments.has_key('----'):
68 return _arguments['----']
70 def _print(self, _object, _attributes={}, **_arguments):
78 if _arguments: raise TypeError, 'No optional args expected'
79 _arguments['----'] = _object
82 _reply, _arguments, _attributes = self.send(_code, _subcode,
83 _arguments, _attributes)
84 if _arguments.get('errn', 0):
85 raise aetools.Error, aetools.decodeerror(_arguments)
87 if _arguments.has_key('----'):
88 return _arguments['----']
94 def quit(self, _no_object=None, _attributes={}, **_arguments):
102 aetools.keysubst(_arguments, self._argmap_quit)
105 aetools.enumsubst(_arguments, 'savo', _Enum_savo)
107 _reply, _arguments, _attributes = self.send(_code, _subcode,
108 _arguments, _attributes)
109 if _arguments.get('errn', 0):
110 raise aetools.Error, aetools.decodeerror(_arguments)
112 if _arguments.has_key('----'):
113 return _arguments['----']