We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f786485 commit 5074c35Copy full SHA for 5074c35
Modules/readline.c
@@ -1256,9 +1256,9 @@ setup_readline(readlinestate *mod_state)
1256
rl_attempted_completion_function = flex_complete;
1257
/* Set Python word break characters */
1258
completer_word_break_characters =
1259
- rl_completer_word_break_characters =
1260
strdup(" \t\n`~!@#$%^&*()-=+[{]}\\|;:'\",<>/?");
1261
/* All nonalphanums except '.' */
+ rl_completer_word_break_characters = completer_word_break_characters;
1262
1263
mod_state->begidx = PyLong_FromLong(0L);
1264
mod_state->endidx = PyLong_FromLong(0L);
0 commit comments