Skip to content

Commit

Permalink
all strings are unicode in Python3
Browse files Browse the repository at this point in the history
  • Loading branch information
a-detiste committed Apr 18, 2024
1 parent 42f654d commit 3d8ab24
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/irclog2html/tests/test_irclog2html.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ def myrepr(o):
else:
return '(%s)' % ', '.join(map(myrepr, o))
elif isinstance(o, str):
return repr(o).lstrip('u')
else:
return repr(o)


Expand Down
2 changes: 0 additions & 2 deletions src/irclog2html/tests/test_irclogsearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ def myrepr(o):
else:
return '(%s)' % ', '.join(map(myrepr, o))
elif isinstance(o, str):
return repr(o).lstrip('u')
else:
return repr(o)


Expand Down

0 comments on commit 3d8ab24

Please sign in to comment.