diff options
author | Xiang Zhang <angwerzx@126.com> | 2018-01-29 03:32:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-29 03:32:12 (GMT) |
commit | 997478eb797b31bd724135ca17781d1cf4b89cfa (patch) | |
tree | bc1c306d7a56bd2956975d044e8dad6dba73c8a3 /Python | |
parent | 1e34da49ef22004ca25c517b3f07c6d25f083ece (diff) | |
download | cpython-997478eb797b31bd724135ca17781d1cf4b89cfa.zip cpython-997478eb797b31bd724135ca17781d1cf4b89cfa.tar.gz cpython-997478eb797b31bd724135ca17781d1cf4b89cfa.tar.bz2 |
bpo-32688: Make why the line is commented out clear (GH-5405)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 3d7bed0..128ec2c 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -3525,7 +3525,7 @@ fast_yield: tstate, f, PyTrace_RETURN, retval)) { Py_CLEAR(retval); - /* why = WHY_EXCEPTION; */ + /* why = WHY_EXCEPTION; useless yet but cause compiler warnings */ } } } |