Lines Matching full:_arguments
248 _arguments = {'----':_object}
250 _arguments['rtyp'] = mktype(asfile)
252 _reply, _arguments, _attributes = self.send(_code, _subcode,
253 _arguments, _attributes)
254 if 'errn' in _arguments:
255 raise Error, decodeerror(_arguments)
257 if '----' in _arguments:
258 return _arguments['----']
269 def _set(self, _object, _attributes={}, **_arguments):
278 keysubst(_arguments, self._argmap_set)
279 _arguments['----'] = _object
282 _reply, _arguments, _attributes = self.send(_code, _subcode,
283 _arguments, _attributes)
284 if _arguments.get('errn', 0):
285 raise Error, decodeerror(_arguments)
287 if '----' in _arguments:
288 return _arguments['----']
307 def open(self, _object, _attributes={}, **_arguments):
315 if _arguments: raise TypeError, 'No optional args expected'
316 _arguments['----'] = _object
319 _reply, _arguments, _attributes = self.send(_code, _subcode,
320 _arguments, _attributes)
321 if 'errn' in _arguments:
322 raise Error, decodeerror(_arguments)
324 if '----' in _arguments:
325 return _arguments['----']