We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I ran: python test262.py --help and I got the output:
python test262.py --help
Traceback (most recent call last): File "test262.py", line 31, in <module> from parseTestRecord import parseTestRecord, stripHeader ImportError: cannot import name stripHeader
how to fix that?
The text was updated successfully, but these errors were encountered:
In a code-breaking change they removed stripHeader. The function previously was:
def stripHeader(src): header = headerPattern.match(src).group(0) return src[len(header):]
Here is the change: 4#
Sorry, something went wrong.
No branches or pull requests
I ran:
python test262.py --help
and I got the output:
how to fix that?
The text was updated successfully, but these errors were encountered: