Every line of 'python starred expression' 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.
642 def visit_StarredExpr(self, node): 643 ctx = self.current_context 644 self.current_context = Load 645 val = self.visit(node.value) 646 self.current_context = ctx 647 ast = Starred(val, ctx()) 648 return propagate_attributes([val], ast)
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
890 def visit_Starred(self, node): 891 gparent = self.parent 892 self.non_terminal(node) 893 self.terminal('*') 894 self.visit(node.value) 895 self.parent = gparent