From: Jack Jansen
Date: Fri, 13 Jun 2003 14:32:49 +0000 (+0000)
Subject: Use the new, now preferred, form of referring to object specifiers (through
X-Git-Tag: v2.3c1~470
X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=880be6f1cfbfc482d041dfa06a40f4114aa1c141;p=thirdparty%2FPython%2Fcpython.git
Use the new, now preferred, form of referring to object specifiers (through
the object, not the module).
---
diff --git a/Mac/OSXResources/app/Resources/English.lproj/Documentation/scripting.html b/Mac/OSXResources/app/Resources/English.lproj/Documentation/scripting.html
index ae9ccee88123..58b1fe263bce 100644
--- a/Mac/OSXResources/app/Resources/English.lproj/Documentation/scripting.html
+++ b/Mac/OSXResources/app/Resources/English.lproj/Documentation/scripting.html
@@ -21,7 +21,7 @@ Python:
import Finder
f = Finder.Finder()
-print f.get(Finder.window(1).name)
+print f.get(f.window(1).name)
is identical to the following piece of AppleScript: