diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-08-02 07:15:29 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-08-02 07:15:29 +0000 |
commit | 02d893cfae830d4ef997095dc6e2786f8b63d2e3 (patch) | |
tree | bcb706b8d3ac39d891f270307d50b0f0f49c0990 /Lib/codecs.py | |
parent | d429ab6df9813cc641d5893eab7d8d5700e7f968 (diff) | |
download | cpython-git-02d893cfae830d4ef997095dc6e2786f8b63d2e3.tar.gz |
Patch #444359: Remove unused imports.
Diffstat (limited to 'Lib/codecs.py')
-rw-r--r-- | Lib/codecs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py index ebcec1c2e8..711d67a261 100644 --- a/Lib/codecs.py +++ b/Lib/codecs.py @@ -7,7 +7,7 @@ Written by Marc-Andre Lemburg (mal@lemburg.com). """#" -import struct, types, __builtin__ +import struct, __builtin__ ### Registry and builtin stateless codec functions |