-
-
Notifications
You must be signed in to change notification settings - Fork 100
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
Separate patch processing within _com_interface_meta
into a module.
#646
Merged
Conversation
This file contains 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
junkmd
added a commit
to junkmd/pywinauto
that referenced
this pull request
Nov 2, 2024
junkmd
force-pushed
the
separate_com_interface_patcher
branch
from
November 2, 2024 07:47
d442819
to
2134ce8
Compare
junkmd
force-pushed
the
separate_com_interface_patcher
branch
from
November 2, 2024 08:05
2134ce8
to
d87b718
Compare
junkmd
force-pushed
the
separate_com_interface_patcher
branch
from
November 2, 2024 08:56
d87b718
to
6de99dd
Compare
junkmd
force-pushed
the
separate_com_interface_patcher
branch
from
November 2, 2024 09:29
6de99dd
to
3230f7a
Compare
junkmd
added a commit
to junkmd/pywinauto
that referenced
this pull request
Nov 2, 2024
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.
Within
_com_interface_meta
,patch.Patcher
is heavily used to define behaviors for dunder methods and pointers.Currently, the codebase has many use of
self
in different meanings and a deeply nested indentation level for the patched classes, making the code hard to read.By moving the sections defining the patched classes into a separate module, we can improve the readability of codebases of the metaclass.
To retain a change history, commits will be split, and this PR will be merged after several rounds of rebasing.