diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-12-13 21:06:19 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-12-13 21:06:19 (GMT) |
commit | 3cda0ed062892c46cbae43989ff59399e8042f58 (patch) | |
tree | 05e8b96522ce3b7774394365b73df0cdf1275806 /Misc | |
parent | db9b65d9e5d9d39199714cfd15a26e46ab0eaae1 (diff) | |
download | cpython-3cda0ed062892c46cbae43989ff59399e8042f58.zip cpython-3cda0ed062892c46cbae43989ff59399e8042f58.tar.gz cpython-3cda0ed062892c46cbae43989ff59399e8042f58.tar.bz2 |
pop the loop block even for infinite while loops (closes #23048)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -11,6 +11,8 @@ Release date: TBA Core and Builtins ----------------- +- Issue #23048: Fix jumping out of an infinite while loop in the pdb. + - Issue #20335: bytes constructor now raises TypeError when encoding or errors is specified with non-string argument. Based on patch by Renaud Blanch. |