[Python-checkins] r67176 - python/trunk/Lib/string.py

benjamin.peterson python-checkins at python.org
Sun Nov 9 02:52:32 CET 2008


Author: benjamin.peterson
Date: Sun Nov  9 02:52:32 2008
New Revision: 67176

Log:
fix comment

Modified:
   python/trunk/Lib/string.py

Modified: python/trunk/Lib/string.py
==============================================================================
--- python/trunk/Lib/string.py	(original)
+++ python/trunk/Lib/string.py	Sun Nov  9 02:52:32 2008
@@ -532,9 +532,8 @@
 # the Formatter class
 # see PEP 3101 for details and purpose of this class
 
-# The hard parts are reused from the C implementation.  They're
-# exposed here via the sys module.  sys was chosen because it's always
-# available and doesn't have to be dynamically loaded.
+# The hard parts are reused from the C implementation.  They're exposed as "_"
+# prefixed methods of str and unicode.
 
 # The overall parser is implemented in str._formatter_parser.
 # The field name parser is implemented in str._formatter_field_name_split


More information about the Python-checkins mailing list