diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-11 15:31:33 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-11 15:31:33 (GMT) |
commit | ca8b64461db5469fc4dc7e43cacb747046a0be53 (patch) | |
tree | a41afac14f69a0abd8ddf7cc12e52fee40d7cc53 /Lib/tokenize.py | |
parent | 62e977f1b6d52a973304db9b0268aece99cb6c42 (diff) | |
parent | cf4a2f29adb6bdae0b18e983250d7c48d486c9d6 (diff) | |
download | cpython-ca8b64461db5469fc4dc7e43cacb747046a0be53.zip cpython-ca8b64461db5469fc4dc7e43cacb747046a0be53.tar.gz cpython-ca8b64461db5469fc4dc7e43cacb747046a0be53.tar.bz2 |
Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded with
imp.reload(). Patch by Thomas Kluyver.
Diffstat (limited to 'Lib/tokenize.py')
-rw-r--r-- | Lib/tokenize.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/tokenize.py b/Lib/tokenize.py index 0659c55..8bc83fd 100644 --- a/Lib/tokenize.py +++ b/Lib/tokenize.py @@ -24,6 +24,7 @@ __author__ = 'Ka-Ping Yee <ping@lfw.org>' __credits__ = ('GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, ' 'Skip Montanaro, Raymond Hettinger, Trent Nelson, ' 'Michael Foord') +from builtins import open as _builtin_open from codecs import lookup, BOM_UTF8 import collections from io import TextIOWrapper @@ -429,8 +430,6 @@ def detect_encoding(readline): return default, [first, second] -_builtin_open = open - def open(filename): """Open a file in read only mode using the encoding detected by detect_encoding(). |