diff options
author | borispopoff <58560689+borispopoff@users.noreply.github.com> | 2021-01-25 23:51:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-25 14:51:48 -0800 |
commit | c7c3b7db29c4dda0519acdf7450e20d47a6409f4 (patch) | |
tree | 873e83097ec0825ade80bd29f7de553395b646c4 /Modules | |
parent | bpo-38250: [Enum] single-bit flags are canonical (GH-24215) (diff) | |
download | cpython-c7c3b7db29c4dda0519acdf7450e20d47a6409f4.tar.gz cpython-c7c3b7db29c4dda0519acdf7450e20d47a6409f4.tar.bz2 cpython-c7c3b7db29c4dda0519acdf7450e20d47a6409f4.zip |
Typo in comment (GH-24199)
Automerge-Triggered-By: GH:Mariatta
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/main.c b/Modules/main.c index ccf096352e9..2684d230672 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -87,7 +87,7 @@ static inline int config_run_code(const PyConfig *config) } -/* Return non-zero is stdin is a TTY or if -i command line option is used */ +/* Return non-zero if stdin is a TTY or if -i command line option is used */ static int stdin_is_interactive(const PyConfig *config) { |