##// END OF EJS Templates
py3: use `except error as e` instead of `except error, e`...
Pulkit Goyal -
r38100:f0fadc5b default
parent child Browse files
Show More
@@ -184,7 +184,7 b' Test corrupted p1/p2 fields that could c'
184 > try:
184 > try:
185 > f()
185 > f()
186 > print('uncaught buffer overflow?')
186 > print('uncaught buffer overflow?')
187 > except ValueError, inst:
187 > except ValueError as inst:
188 > print(inst)
188 > print(inst)
189 > EOF
189 > EOF
190
190
General Comments 0
You need to be logged in to leave comments. Login now