[Python-checkins] cpython (merge 3.2 -> 3.3): Merge example fix with 3.2.

ezio.melotti python-checkins at python.org
Sat Jan 5 05:54:52 CET 2013


http://hg.python.org/cpython/rev/320e7b9b8002
changeset:   81288:320e7b9b8002
branch:      3.3
parent:      81285:827ddaaa45e4
parent:      81287:ed618d1210ae
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Sat Jan 05 06:54:23 2013 +0200
summary:
  Merge example fix with 3.2.

files:
  Doc/faq/design.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst
--- a/Doc/faq/design.rst
+++ b/Doc/faq/design.rst
@@ -730,7 +730,7 @@
 reasonable uses of the "go" or "goto" constructs of C, Fortran, and other
 languages.  For example::
 
-   class label: pass  # declare a label
+   class label(Exception): pass  # declare a label
 
    try:
         ...

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list