-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Use unicode/bytes literals instead of calls #4309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
oh this is a superset of #4305 |
@RonnyPfannschmidt more a continuation -- I was inspired by your change to try and fix more of it :) |
@@ -262,16 +254,16 @@ def _compare_eq_sequence(left, right, verbose=False): | |||
explanation = [] | |||
for i in range(min(len(left), len(right))): | |||
if left[i] != right[i]: | |||
explanation += [u("At index %s diff: %r != %r") % (i, left[i], right[i])] | |||
explanation += [u"At index %s diff: %r != %r" % (i, left[i], right[i])] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
at the diff i noted that we should use saferepr here, perhaps a nice followup
great job at pulling in the rest 👍 |
Codecov Report
@@ Coverage Diff @@
## master #4309 +/- ##
==========================================
- Coverage 95.84% 95.84% -0.01%
==========================================
Files 111 111
Lines 24871 24866 -5
Branches 2424 2424
==========================================
- Hits 23837 23832 -5
Misses 737 737
Partials 297 297
Continue to review full report at Codecov.
|
No description provided.