Skip to content

Commit 7a2bf02

Browse files
Pierre-Sassoulascdce8p
authored andcommitted
[python 3.14] no-name-in-module / no-member expected for python 3.14 (trying to minimize the change, if possible)
1 parent 9bf7194 commit 7a2bf02

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/functional/c/consider/consider_using_with.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import threading
1010
import urllib
1111
import zipfile
12-
from concurrent.futures import ThreadPoolExecutor, ProcessPoolExecutor
12+
from concurrent.futures import ThreadPoolExecutor, ProcessPoolExecutor # >=3.14: [no-name-in-module]
1313
from pathlib import Path
1414

1515

tests/functional/g/generic_alias/generic_alias_mixed_py39.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
var_iterable: collections.abc.Iterable[int]
1616
var_awaitable: collections.abc.Awaitable[int]
1717
var_pattern: re.Pattern[int]
18-
var_bytestring: collections.abc.ByteString
18+
var_bytestring: collections.abc.ByteString # >=3.14: [no-member]
1919
var_hashable: collections.abc.Hashable
2020
var_context_manager: contextlib.AbstractContextManager[int]
2121

0 commit comments

Comments
 (0)