This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author r.david.murray
Recipients docs@python, r.david.murray, rhettinger, steven.daprano, xfq
Date 2016-11-13.17:24:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1479057851.66.0.0126534633545.issue28681@psf.upfronthosting.co.za>
In-reply-to
Content
I would rewrite that paragraph as follows:

   A function definition associates the function name with
   the function object in the current symbol table.  The
   interpreter recognizes the object pointed to by that
   name as a user-defined function.  Other names can also
   point to that same function object and can then also
   be used as a function.

You will note that I've dropped the mention of renaming entirely, since the function does know it's __name__, and introducing that topic at this point in the tutorial would be confusing and unnecessary.  (NB: one could also say "referenced" and "reference" rather than "pointed to" and "point to"; I'm not sure which is more in line with the rest of the tutorial).
History
Date User Action Args
2016-11-13 17:24:11r.david.murraysetrecipients: + r.david.murray, rhettinger, steven.daprano, docs@python, xfq
2016-11-13 17:24:11r.david.murraysetmessageid: <1479057851.66.0.0126534633545.issue28681@psf.upfronthosting.co.za>
2016-11-13 17:24:11r.david.murraylinkissue28681 messages
2016-11-13 17:24:11r.david.murraycreate