-
Notifications
You must be signed in to change notification settings - Fork 3
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
Per-line annotation and various improvements #1
base: master
Are you sure you want to change the base?
Conversation
Hey HoverHell, Also, I assume setuptools.setup is the preferred, contemporary version of distutils.core.setup? Or are there more concrete reasons to use one over the other? Thanks! |
The primary reason I myself use it is for In general, it is a good idea to
Without:
With:
The more controversial thing it does is the backslash for unterminated lines:
Of course it is mostly useful for output that doesn't appear at once, e.g. |
After a bit more use, I conclude that backslash for unterminated lines is generally problematic and it is usually preferable to use line-buffering; which I added. |
No description provided.