diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 07:42:52 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 07:42:52 (GMT) |
commit | 7cf231f695194e81c0431bd96940ab2f37e061ad (patch) | |
tree | a1da5ca3d69956eb3e1ea209739e22bbbdba28ed /Doc/tutorial | |
parent | e678f51e236a81acd7cdb7e1cefafaa9aa6115d2 (diff) | |
parent | a0ec296599183e7a82ee4c0f096d51ae858b6f98 (diff) | |
download | cpython-7cf231f695194e81c0431bd96940ab2f37e061ad.zip cpython-7cf231f695194e81c0431bd96940ab2f37e061ad.tar.gz cpython-7cf231f695194e81c0431bd96940ab2f37e061ad.tar.bz2 |
merge with 3.3
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/classes.rst | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index 3283e54..291410a 100644 --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -168,7 +168,6 @@ binding:: def do_global(): global spam spam = "global spam" - spam = "test spam" do_local() print("After local assignment:", spam) |