diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-11-25 03:16:09 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-11-25 03:16:09 (GMT) |
commit | 5833c00427651c2b7d99c663da81df9418a6bc83 (patch) | |
tree | 99202667d55ee03e3cab14796a2a3a0b45fa1ce6 /Lib/tokenize.py | |
parent | 799f81b14c554547eeb64bafc0019995b7f08b03 (diff) | |
parent | 4bcc796acc17f8ab7eeaa3f7faa6a61135b2c090 (diff) | |
download | cpython-5833c00427651c2b7d99c663da81df9418a6bc83.zip cpython-5833c00427651c2b7d99c663da81df9418a6bc83.tar.gz cpython-5833c00427651c2b7d99c663da81df9418a6bc83.tar.bz2 |
#19620: merge with 3.3.
Diffstat (limited to 'Lib/tokenize.py')
-rw-r--r-- | Lib/tokenize.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tokenize.py b/Lib/tokenize.py index 91f8e47..f614aeb 100644 --- a/Lib/tokenize.py +++ b/Lib/tokenize.py @@ -333,7 +333,7 @@ def _get_normal_name(orig_enc): def detect_encoding(readline): """ The detect_encoding() function is used to detect the encoding that should - be used to decode a Python source file. It requires one argment, readline, + be used to decode a Python source file. It requires one argument, readline, in the same way as the tokenize() generator. It will call readline a maximum of twice, and return the encoding used |