Commit 7008819
authored
Introduce warnings for Python 3.15 enum compatibility and improve test stability. (#907)
* docs: Add note about Python 3.15 `enum` behavior in `README.md`.
Explain that `IntFlag` values for negative enum members may be reinterpreted
in Python 3.15+, affecting `comtypes` generated enums.
* feat: Add `FutureWarning` for Python 3.15 `enum` behavior.
Introduces a `FutureWarning` in `__init__.py` for Python 3.15 and later to
notify users about potential changes in `enum` handling, specifically
`IntFlag` values.
* test: Improve Python 3.15 `enum` test clarity.
Conditionally skip `test_enums_in_friendly_mod` on Python 3.15 alpha/beta
versions in `test_client.py` to prevent failures due to
potential `IntFlag` changes. This change includes adding `subTest` messages
for better debugging.
Additionally, refactor enum member access in `test_puredispatch.py`
from `msi.MsiInstallState.msiInstallStateUnknown` to
`msi.msiInstallStateUnknown` for improved clarity and consistency.
* test: Prevent memory errors in `from_outparam` test.
The test now uses `create_unicode_buffer` to safely allocate a valid
memory block outside of the COM allocator's control. This ensures
the test correctly validates the behavior of `from_outparam` on
unmanaged memory without causing access violations.1 parent 1fc72e0 commit 7008819
File tree
5 files changed
+56
-8
lines changed- comtypes
- test
5 files changed
+56
-8
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
15 | 21 | | |
16 | 22 | | |
17 | 23 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
21 | 37 | | |
22 | 38 | | |
23 | 39 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
269 | 269 | | |
270 | 270 | | |
271 | 271 | | |
| 272 | + | |
| 273 | + | |
| 274 | + | |
| 275 | + | |
| 276 | + | |
| 277 | + | |
| 278 | + | |
| 279 | + | |
| 280 | + | |
| 281 | + | |
| 282 | + | |
| 283 | + | |
272 | 284 | | |
273 | 285 | | |
274 | 286 | | |
| |||
287 | 299 | | |
288 | 300 | | |
289 | 301 | | |
290 | | - | |
| 302 | + | |
| 303 | + | |
| 304 | + | |
| 305 | + | |
| 306 | + | |
291 | 307 | | |
292 | 308 | | |
293 | 309 | | |
294 | 310 | | |
| 311 | + | |
295 | 312 | | |
296 | 313 | | |
297 | 314 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
4 | 12 | | |
5 | 13 | | |
6 | 14 | | |
| |||
38 | 46 | | |
39 | 47 | | |
40 | 48 | | |
41 | | - | |
42 | | - | |
43 | | - | |
44 | | - | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
45 | 54 | | |
46 | 55 | | |
47 | 56 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
83 | 83 | | |
84 | 84 | | |
85 | 85 | | |
86 | | - | |
| 86 | + | |
87 | 87 | | |
88 | 88 | | |
89 | 89 | | |
90 | 90 | | |
91 | 91 | | |
92 | | - | |
| 92 | + | |
93 | 93 | | |
94 | 94 | | |
95 | 95 | | |
| |||
0 commit comments