We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84daa7d commit 4daf534Copy full SHA for 4daf534
2 files changed
docs/source/_ext/doctest_ext.py
@@ -31,7 +31,6 @@
31
32
import ctypes
33
import os
34
-import sys
35
import re
36
import tempfile
37
import textwrap
@@ -47,7 +46,7 @@
47
46
from sphinx.util import logging as sphinx_logging
48
logger = sphinx_logging.getLogger(__name__)
49
50
-_libc = ctypes.CDLL('ucrtbase' if sys.platform == 'win32' else None)
+_libc = ctypes.CDLL(None)
51
52
53
class _FdCaptureOut:
0 commit comments