Commit 88e66254 authored by Fred Drake's avatar Fred Drake

Use the more conventional "self" as the name of the self parameter in an

example.  It actually confused a reader.
parent 0c209047
......@@ -3429,7 +3429,7 @@ this:
class MyClass:
"A simple example class"
i = 12345
def f(x):
def f(self):
return 'hello world'
\end{verbatim}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment