sloc-languages 1.5.64

Source line analysis tool with CLI, web UI, HTML/PDF reports, and CI/CD integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""Module docstring."""


def greet(name):
    """Return a greeting string."""
    return "Hello, " + name  # inline comment


class Greeter:
    """Greeter class."""

    def hello(self):
        # Intentionally empty — corpus test fixture for empty-method detection
        pass