diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-10-05 17:38:45 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-10-05 17:38:45 +0200 |
commit | d577cea8ab0d929c40de93947dd68b9709607b35 (patch) | |
tree | 6c3075232ff9b70ecd47a10e954f7d6403485b2a /Lib/test/test_source_encoding.py | |
parent | f4e4b83824318c2415e1d90d00726d07ba8790b9 (diff) | |
parent | bed04a77ee4dde8e1ab7b00557519f01cac734aa (diff) | |
download | cpython-git-d577cea8ab0d929c40de93947dd68b9709607b35.tar.gz |
Merge 3.4
Diffstat (limited to 'Lib/test/test_source_encoding.py')
-rw-r--r-- | Lib/test/test_source_encoding.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_source_encoding.py b/Lib/test/test_source_encoding.py index 0c41e50662..39a7c56019 100644 --- a/Lib/test/test_source_encoding.py +++ b/Lib/test/test_source_encoding.py @@ -1,7 +1,7 @@ # -*- coding: koi8-r -*- import unittest -from test.support import TESTFN, unlink, unload +from test.support import TESTFN, unlink, unload, rmtree import importlib import os import sys @@ -129,6 +129,7 @@ class SourceEncodingTest(unittest.TestCase): unlink(filename + "c") unlink(filename + "o") unload(TESTFN) + rmtree('__pycache__') def test_error_from_string(self): # See http://bugs.python.org/issue6289 |