mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
gh-90473: Decrease recursion limit and skip tests on WASI (GH-92803)
(cherry picked from commit 137fd3d88a
)
Co-authored-by: Christian Heimes <christian@python.org>
This commit is contained in:
parent
611d43c2a4
commit
7afccd34a6
20 changed files with 109 additions and 14 deletions
|
@ -186,6 +186,10 @@ def libc_ver(executable=None, lib='', version='', chunksize=16384):
|
|||
|
||||
executable = sys.executable
|
||||
|
||||
if not executable:
|
||||
# sys.executable is not set.
|
||||
return lib, version
|
||||
|
||||
V = _comparable_version
|
||||
# We use os.path.realpath()
|
||||
# here to work around problems with Cygwin not being
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue