-
Notifications
You must be signed in to change notification settings - Fork 4
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
Do not show values eagerly #4
Conversation
When attempting to show infinite lists, `ushowWith` would hang until the process runs out of memory, despite `show` working on them. This makes it so they can be shown using `ushow` or `ushowWith` like they can be with `show`.
This is failing the test for showing |
Thanks for the pull request! |
Anyway, I have to update the settings of travis to use the latest LTS Haskells though... Sorry for the inactivity... |
@Kaiepi Can you rebase from the latest master? I've updated .travis.yml to test with the newer GHCs. Side note: As I added to README, you might prefer pretty-simple, which subsumes pretty-simple. |
3f842a1
to
a6b4023
Compare
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.
Can you rebase from the master branch again?
It will reveal the other warnings. I'll merge after fixing the problems.
Sorry, I'll change my mind. Thank you! |
When attempting to show infinite lists,
ushowWith
would hang untilthe process runs out of memory, despite
show
working on them. Thismakes it so they can be shown using
ushow
orushowWith
like theycan be with
show
.I'm fairly new to Haskell, and I can't be fully certain this behaves the same as before since this is failing a test that's also failing on master (though it passes all of the others), so bear with me.