Skip to content

Commit 4d768e2

Browse files
committed
[GR-9150] sysconfig and platform now work
1 parent 6fe15f3 commit 4d768e2

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

graalpython/lib-python/3/test/support/__init__.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2163,11 +2163,9 @@ def _check_docstrings():
21632163
"""Just used to check if docstrings are enabled"""
21642164

21652165

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
2166+
MISSING_C_DOCSTRINGS = (check_impl_detail() and
2167+
sys.platform != 'win32' and
2168+
not sysconfig.get_config_var('WITH_DOC_STRINGS'))
21712169

21722170
HAVE_DOCSTRINGS = (_check_docstrings.__doc__ is not None and
21732171
not MISSING_C_DOCSTRINGS)

0 commit comments

Comments
 (0)