Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

bpo-41395: use context manager to close filetype objects #21702

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

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
simplify with statements
  • Loading branch information
amiremohamadi committed Aug 2, 2020
commit ce19169cff3acad61468dee469c5e4cbcd6a0b2d
4 changes: 2 additions & 2 deletions 4 Lib/pickle.py
Original file line number Diff line number Diff line change
Expand Up @@ -1812,7 +1812,7 @@ def _test():
parser.print_help()
else:
import pprint
for pickle_file in args.pickle_file:
with pickle_file as f:
for f in args.pickle_file:
with f:
obj = load(f)
pprint.pprint(obj)
12 changes: 6 additions & 6 deletions 12 Lib/pickletools.py
Original file line number Diff line number Diff line change
Expand Up @@ -2880,14 +2880,14 @@ def _test():
if not args.pickle_file:
parser.print_help()
elif len(args.pickle_file) == 1:
with args.pickle_file[0] as pickle_file, args.output as output:
dis(pickle_file, output, None,
with args.pickle_file[0], args.output:
dis(args.pickle_file[0], args.output, None,
args.indentlevel, annotate)
else:
memo = {} if args.memo else None
with args.output as output:
for pickle_file in args.pickle_file:
with pickle_file as f:
with args.output:
for f in args.pickle_file:
with f:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this could be improved as if there is an error while processing some files, the files that have not been already processed will not be closed. By using contextlib.ExitStack() here we could make sure that the files would always be closed even if some error occurs as we would register them all before starting processing them.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good!
Just for making sure, you mean sth like this?

with contextlib.ExitStack() as stack:                            
    output = stack.enter_context(args.output)                    
    infiles = [stack.enter_context(f) for f in args.pickle_file] 
    for f in infiles:                                            
        preamble = args.preamble.format(name=f.name)
        output.write(preamble + '\n')
        dis(f, output, memo, args.indentlevel, annotate)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about just using try/finally? Looks simpler to me:

            try:
                for f in args.pickle_file:
                    preamble = args.preamble.format(name=f.name)
                    args.output.write(preamble + '\n')
                    dis(f, args.output, memo, args.indentlevel, annotate)
            finally:
                args.output.close()
                for f in args.pickle_file:
                    f.close()

preamble = args.preamble.format(name=f.name)
output.write(preamble + '\n')
args.output.write(preamble + '\n')
dis(f, args.output, memo, args.indentlevel, annotate)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.