1 2 3 4 5 6 7 8 9 10 11 12
"""Module with intentional syntax errors for testing error handling.""" def broken_function( # Missing closing parenthesis and colon return "This won't parse" class BrokenClass # Missing colon def method(self): pass