diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-09-06 06:28:06 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-09-06 06:28:06 (GMT) |
commit | ca460d9722c9542004c4cf34d9231641ac18e34b (patch) | |
tree | b007e31668de7ff4b37e0c8d80dc575e8b600118 /Lib/plat-mac/aetools.py | |
parent | 98775dfebc86aca40b27dcca5e4f4fd3a07e8acb (diff) | |
download | cpython-ca460d9722c9542004c4cf34d9231641ac18e34b.zip cpython-ca460d9722c9542004c4cf34d9231641ac18e34b.tar.gz cpython-ca460d9722c9542004c4cf34d9231641ac18e34b.tar.bz2 |
with and as are now keywords. There are some generated files I can't recreate.
Diffstat (limited to 'Lib/plat-mac/aetools.py')
-rw-r--r-- | Lib/plat-mac/aetools.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/plat-mac/aetools.py b/Lib/plat-mac/aetools.py index 79f3978..c277b52 100644 --- a/Lib/plat-mac/aetools.py +++ b/Lib/plat-mac/aetools.py @@ -233,7 +233,7 @@ class TalkTo: """Send 'activate' command""" self.send('misc', 'actv') - def _get(self, _object, as=None, _attributes={}): + def _get(self, _object, asfile=None, _attributes={}): """_get: get data from an object Required argument: the object Keyword argument _attributes: AppleEvent attribute dictionary @@ -243,8 +243,8 @@ class TalkTo: _subcode = 'getd' _arguments = {'----':_object} - if as: - _arguments['rtyp'] = mktype(as) + if asfile: + _arguments['rtyp'] = mktype(asfile) _reply, _arguments, _attributes = self.send(_code, _subcode, _arguments, _attributes) @@ -253,8 +253,8 @@ class TalkTo: if _arguments.has_key('----'): return _arguments['----'] - if as: - item.__class__ = as + if asfile: + item.__class__ = asfile return item get = _get |