diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-01-14 04:19:49 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-01-14 04:19:49 (GMT) |
commit | 2dfe6b00edde81d752d37d280cd47fd5aac9a433 (patch) | |
tree | cf4f58fc9b504823d039da3db3d0eb90eb2beb07 /Doc/whatsnew | |
parent | 77b1ecf0adb0edf51958ebeef8e93ba3cfea5601 (diff) | |
download | cpython-2dfe6b00edde81d752d37d280cd47fd5aac9a433.zip cpython-2dfe6b00edde81d752d37d280cd47fd5aac9a433.tar.gz cpython-2dfe6b00edde81d752d37d280cd47fd5aac9a433.tar.bz2 |
Fix merge glitch in What's New
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 07257f0..b2909f7 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -224,6 +224,7 @@ it provides better information about where they were actually defined, and how they might be accessible from the global scope. Example with (non-bound) methods:: + >>> class C: ... def meth(self): ... pass |