8000 bpo-39968: Fix a typo error in get_readline_state() (GH-19028) · python/cpython@5f104d5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5f104d5

Browse files
authored
bpo-39968: Fix a typo error in get_readline_state() (GH-19028)
1 parent f6a5850 commit 5f104d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/readline.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ typedef struct {
8787
} readlinestate;
8888

8989
static inline readlinestate*
90-
get_readline_state(PyModule *module)
90+
get_readline_state(PyObject *module)
9191
{
9292
void *state = PyModule_GetState(module);
9393
assert(state != NULL);

0 commit comments

Comments
 (0)
0