From 9bb56a66c548e84012de141e4665ea39701c1e5f Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Mon, 24 Sep 2012 19:28:59 -0700 Subject: [PATCH] Issue #16015: Fix NameError doctest example in tutorial introduction. --- Doc/tutorial/introduction.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 43ea7aa3718..b6d94accfdd 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -94,8 +94,7 @@ A value can be assigned to several variables simultaneously:: Variables must be "defined" (assigned a value) before they can be used, or an error will occur:: - >>> # try to access an undefined variable - ... n + >>> n # try to access an undefined variable Traceback (most recent call last): File "", line 1, in NameError: name 'n' is not defined