From: Benjamin Peterson Date: Thu, 23 Dec 2010 23:45:39 +0000 (+0000) Subject: update comment X-Git-Tag: v3.2rc1~359 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bc78e37d4600de458559ca25959ee81ab864df29;p=python update comment --- diff --git a/Lib/gettext.py b/Lib/gettext.py index 24586da345..73302290dd 100644 --- a/Lib/gettext.py +++ b/Lib/gettext.py @@ -81,7 +81,7 @@ def c2py(plural): plural = expr.sub(' not \\1', plural) # Regular expression and replacement function used to transform - # "a?b:c" to "test(a,b,c)". + # "a?b:c" to "b if a else c". expr = re.compile(r'(.*?)\?(.*?):(.*)') def repl(x): return "(%s if %s else %s)" % (x.group(2), x.group(1),