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 vstinner
Recipients serhiy.storchaka, vstinner
Date 2016-11-30.11:13:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1480504437.73.0.907175245586.issue28838@psf.upfronthosting.co.za>
In-reply-to
Content
See python-dev thread about my changeset 7efddbf1aa70:
https://mail.python.org/pipermail/python-dev/2016-November/146885.html

Serhiy asked me to revert it. It's now reverted by the revision 20bb8babc505. So, here is my change as a patch to review it.

See the thread for my rationale on argument names.

--

Uniformize argument names of "call" functions

* Callable object: callable, o, callable_object => func
* Object for method calls: o => obj
* Method name: name or nameid => method

Cleanup also the C code:

* Don't initialize variables to NULL if they are not used before their first
  assignement
* Add braces for readability
History
Date User Action Args
2016-11-30 11:13:58vstinnersetrecipients: + vstinner, serhiy.storchaka
2016-11-30 11:13:57vstinnersetmessageid: <1480504437.73.0.907175245586.issue28838@psf.upfronthosting.co.za>
2016-11-30 11:13:57vstinnerlinkissue28838 messages
2016-11-30 11:13:57vstinnercreate