-
Notifications
You must be signed in to change notification settings - Fork 271
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
adds .data, fixes --checkdir #74
Conversation
setup.py
Outdated
@@ -60,5 +60,5 @@ class CustomInstall(install): | |||
"console_scripts": ["check50=check50:main"] | |||
}, | |||
url="https://github.com/cs50/check50", | |||
version="2.0.6" | |||
version="2.0.8" |
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.
Why 8
?
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.
Actually, let's wait before merging, couple other changes pending it seems. And we should go to 2.1.0 anyway.
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.
👍
Adds segmentation fault detection, other bugfixes
Fixed EOF messages
Added SIGINT handler
Okay, ready for you, @kzidane! |
check50.py
Outdated
@@ -67,6 +67,8 @@ def main(): | |||
help="display the full tracebacks of any errors") | |||
|
|||
config.args = parser.parse_args() | |||
if isinstance(config.args.checkdir, list): |
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.
Since the nargs=1
line was removed, how could this ever be a list?
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.
cs50/submit50#147 (EDIT: 147 was merged into develop, cs50/submit50#148 now needs to be merged into master) needs to be merged first. (setup.py
requires submit50>=2.4.5
b/c the ability to customize submit50's cancel message is now required.)
No description provided.