Added item that "continue" inside "try" should be fixed; the current
behavior has been described as an implementation limitation.
This commit is contained in:
parent
1281e4e7c8
commit
6e22fb80fb
12
pep-0042.txt
12
pep-0042.txt
|
@ -44,6 +44,18 @@ Core Language / Builtins
|
|||
Borland C++ builder application to interact with a python.dll
|
||||
build with MSVC.
|
||||
|
||||
- "continue" inside "try" should work as expect instead of raising
|
||||
SyntaxError. The current behavior is considered an implementation
|
||||
limit.
|
||||
|
||||
while 1:
|
||||
try:
|
||||
continue
|
||||
except:
|
||||
pass
|
||||
|
||||
http://sourceforge.net/bugs/?func=detailbug&bug_id=110830&group_id=5470
|
||||
|
||||
|
||||
Standard Library
|
||||
|
||||
|
|
Loading…
Reference in New Issue