diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-11-09 01:52:32 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-11-09 01:52:32 (GMT) |
commit | b7c95ce8b82c1cfce684edfca73aca4e7ae61940 (patch) | |
tree | 71fe2e3418ce0de03d4d868b49c06f7c36cc67ff /Lib/string.py | |
parent | d224fc6cbca7d34a0bdc18ce90875cda61bd6864 (diff) | |
download | cpython-b7c95ce8b82c1cfce684edfca73aca4e7ae61940.zip cpython-b7c95ce8b82c1cfce684edfca73aca4e7ae61940.tar.gz cpython-b7c95ce8b82c1cfce684edfca73aca4e7ae61940.tar.bz2 |
fix comment
Diffstat (limited to 'Lib/string.py')
-rw-r--r-- | Lib/string.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/string.py b/Lib/string.py index daf9863..e4d9e4f 100644 --- a/Lib/string.py +++ b/Lib/string.py @@ -532,9 +532,8 @@ except ImportError: # 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 |