Author: guido.van.rossum
Date: Tue Apr 18 01:13:00 2006
New Revision: 45500
Modified:
python/branches/p3yk/Lib/idlelib/WindowList.py
python/branches/p3yk/Lib/plat-mac/lib-scriptpackages/StdSuites/AppleScript_Suite.py
Log:
Fix two errors that prevented "make libinstall" from working:
- a line indented with tabs;
- a function named 'as'.
Modified: python/branches/p3yk/Lib/idlelib/WindowList.py
==============================================================================
--- python/branches/p3yk/Lib/idlelib/WindowList.py (original)
+++ python/branches/p3yk/Lib/idlelib/WindowList.py Tue Apr 18 01:13:00 2006
@@ -45,7 +45,7 @@
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()
Modified:
python/branches/p3yk/Lib/plat-mac/lib-scriptpackages/StdSuites/AppleScript_Suite.py
==============================================================================
---
python/branches/p3yk/Lib/plat-mac/lib-scriptpackages/StdSuites/AppleScript_Suite.py
(original)
+++
python/branches/p3yk/Lib/plat-mac/lib-scriptpackages/StdSuites/AppleScript_Suite.py
Tue Apr 18 01:13:00 2006
@@ -300,8 +300,8 @@
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
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins