We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d857958 commit bc04009Copy full SHA for bc04009
2 files changed
docs/source/_ext/doctest_ext.py
@@ -47,7 +47,7 @@
47
from sphinx.util import logging as sphinx_logging
48
logger = sphinx_logging.getLogger(__name__)
49
50
-_libc = ctypes.CDLL('msvcrt' if sys.platform == 'win32' else None)
+_libc = ctypes.CDLL('ucrtbase' if sys.platform == 'win32' else None)
51
52
53
class _FdCaptureOut:
test/test_print.py
@@ -23,7 +23,7 @@
23
# opt_level=0 required for correct print ordering in tileiras < 13.2
24
_DEFAULT_OPT_LEVEL = CompilerOptions.__dataclass_fields__['opt_level'].default
25
_OPT_LEVEL = 0 if get_tileiras_version() < BytecodeVersion.V_13_2 else _DEFAULT_OPT_LEVEL
26
27
28
29
def _run_kernel(kernel, x, tile):
0 commit comments