mirror of
https://github.com/python/cpython.git
synced 2025-12-05 00:52:25 +00:00
Fix two errors that prevented "make libinstall" from working:
- a line indented with tabs; - a function named 'as'.
This commit is contained in:
parent
07519f8712
commit
69e8084ad6
2 changed files with 3 additions and 3 deletions
|
|
@ -300,8 +300,8 @@ class AppleScript_Suite_Events:
|
||||||
if _arguments.has_key('----'):
|
if _arguments.has_key('----'):
|
||||||
return _arguments['----']
|
return _arguments['----']
|
||||||
|
|
||||||
def as(self, _object, _attributes={}, **_arguments):
|
def as_(self, _object, _attributes={}, **_arguments):
|
||||||
"""as: Coercion
|
"""as_: Coercion
|
||||||
Required argument: an AE object reference
|
Required argument: an AE object reference
|
||||||
Keyword argument _attributes: AppleEvent attribute dictionary
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
||||||
Returns: anything
|
Returns: anything
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue