Every line of 'python try except' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
1035 def p_try_stmt_1(p): 1036 '''try_stmt : TRY COLON suite try_stmt_plus''' 1037 # 1 2 3 4 1038 p[0] = ast.TryExcept(p[3], p[4], [], rule=inspect.currentframe().f_code.co_name, **p[1][1])
395 @utils.check_messages('unpacking-in-except') 396 def visit_excepthandler(self, node): 397 """Visit an except handler block and check for exception unpacking.""" 398 if isinstance(node.name, (astroid.Tuple, astroid.List)): 399 self.add_message('unpacking-in-except', node=node)
28 def test(self): 29 30 error = ValueError 31 32 for i in xrange(self.rounds): 33 try: 34 raise error 35 except: 36 pass 37 try: 38 raise error 39 except: 40 pass 41 try: 42 raise error,"something" 43 except: 44 pass 45 try: 46 raise error,"something" 47 except: 48 pass 49 try: 50 raise error,"something" 51 except: 52 pass 53 try: 54 raise error("something") 55 except: 56 pass 57 try: 58 raise error("something") 59 except: 60 pass 61 try: 62 raise error("something") 63 except: 64 pass