mirror of https://github.com/python/cpython
Add missing semicolon to '>'.
This commit is contained in:
parent
4d3376a80f
commit
1dccdc221c
|
@ -42,7 +42,7 @@ def replace(s, old, new):
|
|||
def escape(s):
|
||||
s = replace(s, '&', '&')
|
||||
s = replace(s, '<', '<')
|
||||
s = replace(s, '>', '>')
|
||||
s = replace(s, '>', '>')
|
||||
return s
|
||||
|
||||
def escapeq(s):
|
||||
|
|
Loading…
Reference in New Issue