codegraph-python 0.4.1

Python parser plugin for CodeGraph - extracts code entities and relationships from Python source files
Documentation
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