-
Notifications
You must be signed in to change notification settings - Fork 95
Fix "end" option in print func #90
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
Fix line 190 to 193. The print function corrected the end option not applied. Added code performed when "end" value of parameter "kwargs" is not "nil".
Codecov Report
@@ Coverage Diff @@
## master #90 +/- ##
==========================================
+ Coverage 68.93% 68.94% +<.01%
==========================================
Files 60 60
Lines 10624 10626 +2
==========================================
+ Hits 7324 7326 +2
Misses 2782 2782
Partials 518 518
Continue to review full report at Codecov.
|
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.
@Sungmin-Joo
Thank you for your contribution!!!
We need the unit test for this changed.
here is the reference
gpython/builtin/tests/builtin.py
Line 300 in 70a66f2
with open("testfile", "w") as f: |
you can check your logic through file read
Fix line 190 to 193. The print function corrected the end option not applied. Added code performed when "end" value of parameter "kwargs" is not "nil".
add "end" option test in line 312
add "end" option test add "end" option test in line 312
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.
@Sungmin-Joo Thank for your contribution!
LGTM
@Sungmin-Joo |
line 190 to 193.
I tried to apply the end option to the print function.
Added code performed when "end" value of parameter "kwargs" is not "nil".