Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4bb9f1cf
Commit
4bb9f1cf
authored
Apr 17, 2006
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix two errors that prevented "make libinstall" from working:
- a line indented with tabs; - a function named 'as'.
parent
9fe49a81
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
Lib/idlelib/WindowList.py
Lib/idlelib/WindowList.py
+1
-1
Lib/plat-mac/lib-scriptpackages/StdSuites/AppleScript_Suite.py
...lat-mac/lib-scriptpackages/StdSuites/AppleScript_Suite.py
+2
-2
No files found.
Lib/idlelib/WindowList.py
View file @
4bb9f1cf
...
...
@@ -45,7 +45,7 @@ class WindowList:
try
:
callback
()
except
:
t
,
v
,
tb
=
sys
.
exc_info
()
t
,
v
,
tb
=
sys
.
exc_info
()
print
"warning: callback failed in WindowList"
,
t
,
":"
,
v
registry
=
WindowList
()
...
...
Lib/plat-mac/lib-scriptpackages/StdSuites/AppleScript_Suite.py
View file @
4bb9f1cf
...
...
@@ -300,8 +300,8 @@ class AppleScript_Suite_Events:
if
_arguments
.
has_key
(
'----'
):
return
_arguments
[
'----'
]
def
as
(
self
,
_object
,
_attributes
=
{},
**
_arguments
):
"""as: Coercion
def
as
_
(
self
,
_object
,
_attributes
=
{},
**
_arguments
):
"""as
_
: Coercion
Required argument: an AE object reference
Keyword argument _attributes: AppleEvent attribute dictionary
Returns: anything
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment