mirror of
https://github.com/servo/servo.git
synced 2025-07-12 09:53:40 +01:00
Update web-platform-tests to revision 0d318188757a9c996e20b82db201fd04de5aa255
This commit is contained in:
parent
b2a5225831
commit
1a81b18b9f
12321 changed files with 544385 additions and 6 deletions
37
tests/wpt/web-platform-tests/tools/html5lib/debug-info.py
Normal file
37
tests/wpt/web-platform-tests/tools/html5lib/debug-info.py
Normal file
|
@ -0,0 +1,37 @@
|
|||
from __future__ import print_function, unicode_literals
|
||||
|
||||
import platform
|
||||
import sys
|
||||
|
||||
|
||||
info = {
|
||||
"impl": platform.python_implementation(),
|
||||
"version": platform.python_version(),
|
||||
"revision": platform.python_revision(),
|
||||
"maxunicode": sys.maxunicode,
|
||||
"maxsize": sys.maxsize
|
||||
}
|
||||
|
||||
search_modules = ["charade", "chardet", "datrie", "genshi", "html5lib", "lxml", "six"]
|
||||
found_modules = []
|
||||
|
||||
for m in search_modules:
|
||||
try:
|
||||
__import__(m)
|
||||
except ImportError:
|
||||
pass
|
||||
else:
|
||||
found_modules.append(m)
|
||||
|
||||
info["modules"] = ", ".join(found_modules)
|
||||
|
||||
|
||||
print("""html5lib debug info:
|
||||
|
||||
Python %(version)s (revision: %(revision)s)
|
||||
Implementation: %(impl)s
|
||||
|
||||
sys.maxunicode: %(maxunicode)X
|
||||
sys.maxsize: %(maxsize)X
|
||||
|
||||
Installed modules: %(modules)s""" % info)
|
Loading…
Add table
Add a link
Reference in a new issue