mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Add missing semicolon to '>'.
This commit is contained in:
parent
4d3376a80f
commit
1dccdc221c
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ def replace(s, old, new):
|
||||||
def escape(s):
|
def escape(s):
|
||||||
s = replace(s, '&', '&')
|
s = replace(s, '&', '&')
|
||||||
s = replace(s, '<', '<')
|
s = replace(s, '<', '<')
|
||||||
s = replace(s, '>', '>')
|
s = replace(s, '>', '>')
|
||||||
return s
|
return s
|
||||||
|
|
||||||
def escapeq(s):
|
def escapeq(s):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue