mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-39968: Fix a typo error in get_readline_state() (GH-19028)
This commit is contained in:
parent
f6a5850782
commit
5f104d56fa
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ typedef struct {
|
|||
} readlinestate;
|
||||
|
||||
static inline readlinestate*
|
||||
get_readline_state(PyModule *module)
|
||||
get_readline_state(PyObject *module)
|
||||
{
|
||||
void *state = PyModule_GetState(module);
|
||||
assert(state != NULL);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue