diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-19 13:51:27 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-19 13:51:27 (GMT) |
commit | 21a9c748aa8698c8201e30a58320d587f6bb7540 (patch) | |
tree | ddfcb60a800bc010237ee750a449c4639e5515e3 /Lib/packaging/tests/test_command_build_scripts.py | |
parent | 0e3f3a70760f5ef1c0d1f7baf55046514b6bfbb6 (diff) | |
download | cpython-21a9c748aa8698c8201e30a58320d587f6bb7540.zip cpython-21a9c748aa8698c8201e30a58320d587f6bb7540.tar.gz cpython-21a9c748aa8698c8201e30a58320d587f6bb7540.tar.bz2 |
packaging: use with open() instead of try/finally: close
Diffstat (limited to 'Lib/packaging/tests/test_command_build_scripts.py')
-rw-r--r-- | Lib/packaging/tests/test_command_build_scripts.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/packaging/tests/test_command_build_scripts.py b/Lib/packaging/tests/test_command_build_scripts.py index 60d8b68..fd3ac24 100644 --- a/Lib/packaging/tests/test_command_build_scripts.py +++ b/Lib/packaging/tests/test_command_build_scripts.py @@ -71,11 +71,8 @@ class BuildScriptsTestCase(support.TempdirManager, return expected def write_script(self, dir, name, text): - f = open(os.path.join(dir, name), "w") - try: + with open(os.path.join(dir, name), "w") as f: f.write(text) - finally: - f.close() def test_version_int(self): source = self.mkdtemp() |