We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f14daaa commit ac53b41Copy full SHA for ac53b41
1 file changed
extra_tests/not_impl_gen.py
@@ -17,7 +17,9 @@
17
from pydoc import ModuleScanner
18
19
20
-DEAD_BATTERIES = {
+# modules suggested for deprecation by PEP 594 (www.python.org/dev/peps/pep-0594/)
21
+# some of these might be implemented, but they are not a priority
22
+PEP_594_MODULES = {
23
"aifc",
24
"asynchat",
25
"asyncore",
@@ -194,7 +196,7 @@ def gen_modules():
194
196
# e.g. printing something or opening a webpage
195
197
modules = {}
198
for mod_name in scan_modules():
- if mod_name in ("this", "antigravity") or mod_name in DEAD_BATTERIES:
199
+ if mod_name in ("this", "antigravity") or mod_name in PEP_594_MODULES:
200
continue
201
dir_result = dir_of_mod_or_error(mod_name)
202
if isinstance(dir_result, Exception):
0 commit comments