-
-
Notifications
You must be signed in to change notification settings - Fork 113
Repo hygiene and full type-check enforcement #241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
wolph
wants to merge
15
commits into
develop
Choose a base branch
from
fix/type-checks-and-hygiene
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
3a66ddf
chore: gitignore .python-version local pin
wolph 9af85a3
chore: remove legacy MSVC build script for removed speedups
wolph 9b3858a
fix: resolve __version__ redeclaration without suppressions
wolph 626c052
fix: replace malformed ndarray type-ignores with typing.cast
wolph e741387
fix: compute logger name without name-mangled private access
wolph f954f2f
test: make logged() characterization test order-independent
wolph c2b0394
fix: declare explicit identity __hash__ alongside custom __eq__
wolph 00dd717
fix: exhaustive bytes/str narrowing in save_ply name handling
wolph 8fc6455
fix: drop unused type-ignores, parameterize PLY mesh dtypes
wolph 60a035b
fix: mark speedups imports as explicit re-exports
wolph e663f59
fix: replace deprecated argparse.FileType with post-parse opens
wolph 24b85fa
ci: enforce mypy, basedpyright and ty alongside pyrefly
wolph 5491cda
docs: changelog for type-check enforcement and CLI FileType fix
wolph 60d039c
fix: hermetic basedpyright resolution and pinned checker versions
wolph 947197d
chore: wrap speedups stub comment to line-length convention
wolph File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,3 +14,4 @@ cover | |
| /stl/*.c | ||
| uv.lock | ||
| benchmarks/.cache/ | ||
| .python-version | ||
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
This file was deleted.
Oops, something went wrong.
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| # Local stub for the optional speedups package so type | ||
| # checkers resolve it without it installed. | ||
| from typing import IO | ||
|
|
||
| import numpy as np | ||
| import numpy.typing as npt | ||
|
|
||
| def ascii_read( | ||
| fh: IO[bytes], | ||
| buf: bytes, | ||
| ) -> tuple[bytes, npt.NDArray[np.void]]: ... | ||
| def ascii_write( | ||
| fh: IO[bytes], | ||
| name: bytes, | ||
| arr: npt.NDArray[np.void], | ||
| ) -> None: ... |
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
loggeddecorator currently uses__name__(which resolves to'stl.base') to construct the logger name. This causes any class decorated with@loggedin another module (or in user code) to have its logger incorrectly placed under thestl.basenamespace.To ensure the logger name matches the class's actual defining module (as described in the test comments), use
class_.__module__instead of__name__.References
class_.__module__) rather than hardcoding the decorator's own module name (__name__) to preserve correct logger hierarchy.