From 52d3e7e6a59954bd375369843dabdea23bb1dfd3 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 7 Mar 2011 08:31:52 +0100 Subject: Name c -> cls in example. --- Doc/tutorial/classes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index 576ef3a..a0f2431 100644 --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -673,9 +673,9 @@ example, the following code will print B, C, D in that order:: class D(C): pass - for c in [B, C, D]: + for cls in [B, C, D]: try: - raise c() + raise cls() except D: print("D") except C: -- cgit v0.12