-
Notifications
You must be signed in to change notification settings - Fork 95
Fix bug in "items" function #115
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
Codecov Report
@@ Coverage Diff @@
## master #115 +/- ##
==========================================
+ Coverage 72.6% 72.61% +<.01%
==========================================
Files 60 60
Lines 11912 11915 +3
==========================================
+ Hits 8649 8652 +3
Misses 2736 2736
Partials 527 527
Continue to review full report at Codecov.
|
py/tests/dict.py
Outdated
@@ -35,6 +36,7 @@ | |||
assert v == "b" | |||
if k == "c": | |||
assert v == 5.5 | |||
assertRaises(TypeError,a.items,'a') |
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.
nit Please follow PEP8 when you writing python code.
assertRaises(TypeError, a.items, 'a')
@corona10 |
@corona10 |
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.
Sorry for the delay
LGTM
@Sungmin-Joo Next time, I recommend you to work on the sperate branch rather than master branch :) |
Fixes #101