We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fe15f3 commit 4d768e2Copy full SHA for 4d768e2
graalpython/lib-python/3/test/support/__init__.py
@@ -2163,11 +2163,9 @@ def _check_docstrings():
2163
"""Just used to check if docstrings are enabled"""
2164
2165
2166
-#TODO reenable me once platform and sysconfig are implemented/supported
2167
-# MISSING_C_DOCSTRINGS = (check_impl_detail() and
2168
-# sys.platform != 'win32' and
2169
-# not sysconfig.get_config_var('WITH_DOC_STRINGS'))
2170
-MISSING_C_DOCSTRINGS = False
+MISSING_C_DOCSTRINGS = (check_impl_detail() and
+ sys.platform != 'win32' and
+ not sysconfig.get_config_var('WITH_DOC_STRINGS'))
2171
2172
HAVE_DOCSTRINGS = (_check_docstrings.__doc__ is not None and
2173
not MISSING_C_DOCSTRINGS)
0 commit comments