]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
typo
authorFlorent Xicluna <florent.xicluna@gmail.com>
Mon, 6 Sep 2010 20:27:55 +0000 (20:27 +0000)
committerFlorent Xicluna <florent.xicluna@gmail.com>
Mon, 6 Sep 2010 20:27:55 +0000 (20:27 +0000)
Lib/string.py

index defe894414c07e9bcdba01a1c13435c727c1bcaf..2a450cd962873ac835a17b8fae726f388fc4e59a 100644 (file)
@@ -174,7 +174,7 @@ class Template(metaclass=_TemplateMetaclass):
 # see PEP 3101 for details and purpose of this class
 
 # The hard parts are reused from the C implementation.  They're exposed as "_"
-# prefixed methods of str and unicode.
+# prefixed methods of str.
 
 # The overall parser is implemented in str._formatter_parser.
 # The field name parser is implemented in str._formatter_field_name_split
@@ -246,7 +246,7 @@ class Formatter:
             return str(value)
         elif conversion is None:
             return value
-        raise ValueError("Unknown converion specifier {0!s}".format(conversion))
+        raise ValueError("Unknown conversion specifier {0!s}".format(conversion))
 
 
     # returns an iterable that contains tuples of the form: