-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
gh-127350: Add Py_fopen() function #127821
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
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
773c4d9
gh-127350: Add Py_fopen() function
vstinner b80f424
Add Py_fclose() function
vstinner 14fb249
Merge branch 'main' into py_fopen
vstinner 7390c5e
Replace _Py_fopen_obj() with Py_fopen() in sysmodule.c
vstinner 26a5a56
Simplify Py_fclose() documentation
vstinner 4375566
Run make clinic
vstinner a779321
Update Doc/c-api/sys.rst
vstinner e613374
Document Py_fclose() return value
vstinner a908b72
Merge branch 'main' into py_fopen
vstinner 2af4d2b
Address some of Serhiy's review
vstinner 8e9170e
Address Erlend's review
vstinner a8c26b2
Add more tests
vstinner 5b52a4e
Support __fspath__() protocol on Windows
vstinner e6a53fe
Update doc for path-like object
vstinner 1d1e7f4
Keep _Py_fopen_obj() function
vstinner 335c1bc
Fix typo
vstinner 8241422
Fix test on macOS and WASI
vstinner c91aa82
Rewrite the Windows implementation
vstinner 0fc6dc1
Use FakePath
vstinner dda4335
NULL mode does crash
vstinner File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add Py_fclose() function
- Loading branch information
commit b80f4245e4635306c6c7e3fda08323d5e859390d
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ | |
PyAPI_FUNC(FILE*) Py_fopen( | ||
PyObject *path, | ||
const char *mode); | ||
|
||
PyAPI_FUNC(int) Py_fclose(FILE *file); |
4 changes: 3 additions & 1 deletion
4
Misc/NEWS.d/next/C_API/2024-12-11-13-01-26.gh-issue-127350.uEBZZ4.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
Add :c:func:`Py_fopen` function to open a file. Similar to the :c:func:`!fopen` | ||
function, but the *path* parameter is a Python object and an exception is set | ||
on error. Patch by Victor Stinner. | ||
on error. Add also :c:func:`Py_fclose` function to close a file, function | ||
needed for Windows support. | ||
Patch by Victor Stinner. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.