10000 gh-103092: Isolate msvcrt by aisk · Pull Request #103248 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content
8000

gh-103092: Isolate msvcrt #103248

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 9 commits into from
Apr 12, 2023
Merged
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. EEBD
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix merge
  • Loading branch information
erlend-aasland authored Apr 10, 2023
commit 49d91e1a43a3b96748bd5f72f56538bcfd0cb622
4 changes: 0 additions & 4 deletions PC/msvcrtmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -596,10 +596,6 @@ static int
exec_module(PyObject* m)
{
int st;
PyObject *m = PyModule_Create(&msvcrtmodule);
if (m == NULL) {
return NULL;
}
PyObject *d = PyModule_GetDict(m); // Borrowed ref.

/* constants for the locking() function's mode argument */
Expand Down
0