]> granicus.if.org Git - python/commit
Uniformize argument names of "call" functions
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 29 Nov 2016 17:47:56 +0000 (18:47 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 29 Nov 2016 17:47:56 +0000 (18:47 +0100)
commitebea9988e0808cab8736f100fc480d536e68f930
treef667dc2778eb2a3041c965aba94f2bfa99146c9f
parent356ae170ef47af5561d0c39be56ef32b76d704a0
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
Include/abstract.h
Include/ceval.h
Objects/abstract.c
Objects/typeobject.c