-
Notifications
You must be signed in to change notification settings - Fork 844
Fix DispatchWithEvents and WithEvents throw on 2nd call #2491
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
Merged
Avasam
merged 7 commits into
mhammond:main
from
Avasam:fix-DispatchWithEvents-and-WithEvents-regression
Mar 12, 2025
Merged
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
5036e13
Fix DispatchWithEvents and WithEvents throw on 2nd call
Avasam ed0d2ad
Redundant test, the test just isn't running.
Avasam d2fb7de
Cleaner if-else
Avasam 1a7d0e1
Merge branch 'fix-DispatchWithEvents-and-WithEvents-regression' of ht…
Avasam 90afcce
cleaner changelog entry
Avasam c4eef13
Keep teh from error: more detailled exception
Avasam abf3382
typo: remove extra space
Avasam 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
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 | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -628,6 +628,13 @@ def TestGenerated(): | |||||||||||||
| # and a plain "WithEvents". | ||||||||||||||
| handler = win32com.client.WithEvents(o, RandomEventHandler) | ||||||||||||||
| TestEvents(o, handler) | ||||||||||||||
|
|
||||||||||||||
| # Ensure that if it has already been dispatched, the base classes are the same. | ||||||||||||||
| o2_again = win32com.client.DispatchWithEvents(o, RandomEventHandler) | ||||||||||||||
| assert o2._obj_.__class__.__bases__ == o2_again._obj_.__class__.__bases__ | ||||||||||||||
| handler_again = win32com.client.WithEvents(o, RandomEventHandler) | ||||||||||||||
| assert handler.__class__.__bases__ == handler_again.__class__.__bases__ | ||||||||||||||
|
|
||||||||||||||
|
||||||||||||||
| # Ensure that if it has already been dispatched, the base classes are the same. | |
| o2_again = win32com.client.DispatchWithEvents(o, RandomEventHandler) | |
| assert o2._obj_.__class__.__bases__ == o2_again._obj_.__class__.__bases__ | |
| handler_again = win32com.client.WithEvents(o, RandomEventHandler) | |
| assert handler.__class__.__bases__ == handler_again.__class__.__bases__ |
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 indentation of this line looks wrong now there are other entries - should it be dedented?
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.
I meant for it to be a precision. But I could rewrite as "2 entries, added by the same changeset" like this:
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.
That "sub item" is more important imo - so maybe it should also move up and note it's a regression? code using win32com.shell is likely broken, right?
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.
Feel free to reorganize the changelog to your likings if you want keep more important stuff at the top. You have the final say on those before releases ^^