1from markupsafe import escape
2
3
4def run():
5    string = "Hello World!" * 1000
6    escape(string)
7