Skip to content

Explicitly close files to prevent resource leak#1054

Open
Stephen0512 wants to merge 1 commit into
lsst-ts:developfrom
Stephen0512:develop
Open

Explicitly close files to prevent resource leak#1054
Stephen0512 wants to merge 1 commit into
lsst-ts:developfrom
Stephen0512:develop

Conversation

@Stephen0512

Copy link
Copy Markdown

This pull request fixes a file-handling issue in the python/lsst/ts/xml/generate_sal_generics_doc.py. The current implementation uses open() without explicitly closing the file, which can potentially lead to resource leaks. While Python's garbage collector will eventually close the file once it is no longer referenced, it is generally better practice to explicitly close files or use a context manager.

This change replaces the direct open() call with a with statement to ensure proper file closure and follow Python best practices. The issue was identified during an ongoing research project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant