refactor: no __main__.py — example entry points are main.py - #26
Merged
Conversation
…age>.main Mat's rule: zero __main__.py in the repo. 32 entry points renamed (content unchanged, guards kept); run commands, docs, scaffold, and test imports updated; loader discovers examples by main.py and BANS __main__.py as debris; sandbox executes <package>.main. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Mat's requirement: zero
__main__.pyin the repo; every example entry point ismain.py, run aspython -m patterns.<group>.<slug>.examples.<project>.main.What
__main__.py→main.py(git mv, content unchanged —main()+ guard kept; the guard fires under-m <pkg>.main).__main__.pyinside a unit, with a test — the rule cannot regress.python -I -m <pkg>.main),list_examplesrun-hints, fixtures, and the/new-patternscaffold.Verification
make checkgreen (548 tests). Install sweep done against this exact state: wheel built, installed into a fresh venv, run from outside the repo — catalog loads 32 patterns, library imports work, examples run viapython -m …main,python-design-patterns-mcpconsole script works, sandboxrun_examplegreen. Wheel ships 32main.py, 0__main__.py. Repo-wide__main__.pycount: 0.Held for Mat's review.
🤖 Generated with Claude Code