mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +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):
|
||||
s = replace(s, '&', '&')
|
||||
s = replace(s, '<', '<')
|
||||
s = replace(s, '>', '>')
|
||||
s = replace(s, '>', '>')
|
||||
return s
|
||||
|
||||
def escapeq(s):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue