diff options
author | Georg Brandl <georg@python.org> | 2008-09-13 17:18:21 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-09-13 17:18:21 (GMT) |
commit | 5d955ed13e4489b229fd31135aaa9280835665be (patch) | |
tree | dbf87d436d01e9a251f011fb5282fd7b95213691 /Doc/tutorial/classes.rst | |
parent | d7b032841aba549f2ec532adcd83829d0126bf40 (diff) | |
download | cpython-5d955ed13e4489b229fd31135aaa9280835665be.zip cpython-5d955ed13e4489b229fd31135aaa9280835665be.tar.gz cpython-5d955ed13e4489b229fd31135aaa9280835665be.tar.bz2 |
Forward-port of r66447.
Diffstat (limited to 'Doc/tutorial/classes.rst')
-rw-r--r-- | Doc/tutorial/classes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index 4e2423f..5831f6c 100644 --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -261,7 +261,7 @@ the class's namespace when the class object was created. So, if the class definition looked like this:: class MyClass: - "A simple example class" + """A simple example class""" i = 12345 def f(self): return 'hello world' |