1from markupsafe import escape
2
3
4def run():
5    string = "<strong>Hello World!</strong>" + "x" * 100000
6    escape(string)
7