]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Fix readline.c compiler warning. (GH-98738)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 26 Oct 2022 23:28:40 +0000 (16:28 -0700)
committerGitHub <noreply@github.com>
Wed, 26 Oct 2022 23:28:40 +0000 (16:28 -0700)
commit5074c35c2a5659e74cd7a0e925a0d7e493ea28e1
tree70ea35e4f3f82d78d32f2dc22828b766f4e107fa
parentf786485f134c76a216b0dd891273f1006bb44863
Fix readline.c compiler warning. (GH-98738)

```
Modules/readline.c:1260:37: warning: assigning to 'char *' from 'const char *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
    completer_word_break_characters =
                                    ^
```
(cherry picked from commit 29b391b1378577825a658b14764a8ff3e0b5c958)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
Modules/readline.c