]> 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:16:09 +0000 (16:16 -0700)
committerGitHub <noreply@github.com>
Wed, 26 Oct 2022 23:16:09 +0000 (16:16 -0700)
commit75990a56b7f5545b7673972881c2769586742f69
treef8f254e77312bed0720aa595c101c07036440017
parent3bad567d085e5380fd6c4309e44aee7b8ee4ea36
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