From: Fred Drake Date: Fri, 23 Jan 2004 04:05:27 +0000 (+0000) Subject: fix method name in example code X-Git-Tag: v2.4a1~907 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=226f697560af74985ee5ecf2fc4f6b1c991006dc;p=thirdparty%2FPython%2Fcpython.git fix method name in example code --- diff --git a/Doc/lib/libcgi.tex b/Doc/lib/libcgi.tex index add322d584f5..a14717ac887a 100644 --- a/Doc/lib/libcgi.tex +++ b/Doc/lib/libcgi.tex @@ -225,7 +225,7 @@ associated with this name. So you write a script containing for example this code: \begin{verbatim} -user = form.getvalue("user").toupper() +user = form.getvalue("user").upper() \end{verbatim} The problem with the code is that you should never expect that a @@ -272,7 +272,7 @@ Using these methods you can write nice compact code: \begin{verbatim} import cgi form = cgi.FieldStorage() -user = form.getfirst("user", "").toupper() # This way it's safe. +user = form.getfirst("user", "").upper() # This way it's safe. for item in form.getlist("item"): do_something(item) \end{verbatim}