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 50b4964

Browse filesBrowse files
committed
Fix wrong argument parsing keycode.
1 parent aa97f24 commit 50b4964
Copy full SHA for 50b4964

File tree

Expand file treeCollapse file tree

1 file changed

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

1 file changed

+2
-2
lines changed

‎Modules/faulthandler.c

Copy file name to clipboardExpand all lines: Modules/faulthandler.c
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,13 +286,13 @@ faulthandler_dump_traceback_py(PyObject *self,
286286

287287
static PyObject *
288288
faulthandler_dump_c_stack_py(PyObject *self,
289-
PyObject *args, PyObject *kwargs)
289+
PyObject *args, PyObject *kwargs)
290290
{
291291
static char *kwlist[] = {"file", NULL};
292292
PyObject *file = NULL;
293293

294294
if (!PyArg_ParseTupleAndKeywords(args, kwargs,
295-
"|p:dump_c_stack", kwlist,
295+
"|O:dump_c_stack", kwlist,
296296
&file))
297297
return NULL;
298298

0 commit comments

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