Python Forum

Full Version: arguments of functions inside methods
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
every method def'd in a class always has a reference to the instance of that class as an added first argument with the caller's arguments pushed to the right by one position. what about functions def'd inside a method? do their arguments have an added instance reference?
No.