Jun Komoda
Jun Komoda
Remaining tasks for #456. https://github.com/enthought/comtypes/blob/18dc2cc0175ee3da76ca2e2766157a4a0a897884/comtypes/client/__init__.py#L200-L222 - remove `if TYPE_CHECKING` bridges, like #453. - change type hints from comment annotations to inline annotations, like #453. - add `TestCase` in [`test/test_client.py`](https://github.com/enthought/comtypes/blob/master/comtypes/test/test_client.py) that...
The `from __future__ import print_function` will no longer be needed if only Python 3 is supported. The following should be removed; ```ps PS ...\comtypes> git log -1 --pretty=%H 00f231784f3ac7da83196e1c85095df6290d5b9f PS...
Since `itf` can be an unbound variable, the following code will cause several type checkers to warn. https://github.com/enthought/comtypes/blob/1615af5b56670cc811e70403dd6762a49f6fe7d1/comtypes/__init__.py#L513-L524 But this `try...except... ` clause traps a `KeyError`. Therefore, it is possible...
#371 I was trying to implement the #400 functionality. However, I realized that it is misleading to have a function annotation that allows named arguments to be accepted, since a...
We have been promoting measures to increase the number of contributors. Contributors will be PR reviewees. As the number of contributors increases, so does the reviewer's workload. We need to...
'named arguments' feature is 'should be added' since 16 years ago, according to commented(938fbd50d2077c6bd524790a9ed798c3990cdfc0) by Thomas Heller, the originator of this package. https://github.com/enthought/comtypes/blob/dbe4fa1bed94fef20b9c56faad1693230dd32c43/comtypes/__init__.py#L609-L611 Also, `bound_named_property.__call__` should support them. https://github.com/enthought/comtypes/blob/dbe4fa1bed94fef20b9c56faad1693230dd32c43/comtypes/__init__.py#L897-L917 If...
I noticed during the bug fix for #524 that the wrapper module for `mshtml.tlb` have a considerably large file size. Given the large number of definitions in the COM type...
This is a re-post of a bug report that was originally posted in the merged PR #525, to prevent it from being overlooked. Changes to prevent this error have been...
Based on the posts in the issues so far, I have decided to clearly state the frequently asked questions in the README. By reducing the iterations of these questions and...
I noticed that the tests for `comtypes.npsupport` fail when `numpy==2.0.0` is installed. ``` ERROR: test_VT_I4_ndarray_enabled (test_npsupport.NumpySupportTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "...\comtypes\comtypes\test\test_npsupport.py", line 66, in call_enabled func(self) File...