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

Commit d24c201

Browse filesBrowse files
authored
Fix multiple definitions for Py_fclose (#130)
1 parent 03043e3 commit d24c201
Copy full SHA for d24c201

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎pythoncapi_compat.h

Copy file name to clipboardExpand all lines: pythoncapi_compat.h
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1968,7 +1968,7 @@ static inline FILE* Py_fopen(PyObject *path, const char *mode)
19681968
#endif
19691969
}
19701970

1971-
int Py_fclose(FILE *file)
1971+
static inline int Py_fclose(FILE *file)
19721972
{
19731973
return fclose(file);
19741974
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.