Bugs item #1171819, was opened at 2005-03-28 15:05
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1171819&group_id=5470

Category: Documentation
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Niek (niekbouman)
Assigned to: Nobody/Anonymous (nobody)
Summary: Error in code example in main tutorial, section 9.3.4

Initial Comment:
Tutorial version:

Online, Current
Release 2.4
30 November 2004

Bug:
In section 9.3.4 Method Objects, the second code
example reads:
=========
xf = x.f
while True:
    print xf()
=========

There should be parentheses after x.f

Suggested new version:
=========
xf = x.f()
while True:
    print xf()
=========

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1171819&group_id=5470
_______________________________________________
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to