Skip to content

Enforce correct file closure #63

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 28, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions check_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Last Modified :
# Version : 1.0

# Modifications :
# Modifications : with statement added to ensure correct file closure

# Description : Check a file exists and that we can read the file

Expand All @@ -14,7 +14,8 @@
# Readfile Functions which open the file that is passed to the script

def readfile(filename):
line = open(filename, 'r').read()
with open(filename, 'r') as f: # Ensure file is correctly closed under all circumstances
line = f.read()
print line

def main():
Expand Down