-
-
Notifications
You must be signed in to change notification settings - Fork 564
New issue
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
normalize.py fails with Python 3.8 #313
Comments
thanks! |
drexin
pushed a commit
to drexin/swift-cmark
that referenced
this issue
May 8, 2020
tkremenek
pushed a commit
to swiftlang/swift-cmark
that referenced
this issue
May 8, 2020
zwaldowski
referenced
this issue
in zwaldowski/cmark-gfm
Dec 22, 2020
QuietMisdreavus
pushed a commit
to swiftlang/swift-cmark
that referenced
this issue
Apr 6, 2023
fix test/regression.txt regression
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
normalize.py
fails with Python 3.8 as cgi.escape has been removed.Adding
import html
and replacingcgi.escape
withhtml.escape
fixed this.html.escape
was added in Python 3.2 so it should be available for most now.The text was updated successfully, but these errors were encountered: