8000 bpo-39968: Fix a typo error of readline by shihai1991 · Pull Request #19028 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-39968: Fix a typo error of readline #19028

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 1 commit into from
Mar 16, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix a typo error of readline
  • Loading branch information
shihai1991 committed Mar 16, 2020
commit ad2992b55f3b5067a4a993d2ed77a22b0e654de7
2 changes: 1 addition & 1 deletion Modules/readline.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
0