You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
THANK YOU! This is pretty much exactly what I was looking for.
Currently, this plug in generates "signatures" (for lack of a better term) that use the name self to reference the object. It would improve the output if we could customize this name somehow. A couple of ways of doing it that I can think of:
Define a directive or parameter that's read from the docstring.
Pick up on names other than self from the code.
I'd prefer to explicitly declare the name in the docstring, personally. self is a very strong naming convention that I wouldn't want to violate.
The text was updated successfully, but these errors were encountered:
Python's official docs avoid using self. They use d to refer to a dictionary, as in len(d), then describe it like this: "Return the number of items in the dictionary d."
THANK YOU! This is pretty much exactly what I was looking for.
Currently, this plug in generates "signatures" (for lack of a better term) that use the name
self
to reference the object. It would improve the output if we could customize this name somehow. A couple of ways of doing it that I can think of:self
from the code.I'd prefer to explicitly declare the name in the docstring, personally.
self
is a very strong naming convention that I wouldn't want to violate.The text was updated successfully, but these errors were encountered: