Lisael
Lisael
@pyramid3d hunter_rust_stable is a branch from another repo, https://github.com/06kellyjac/hunter.git EDIT: looks like the branch is now `hunter_rust_stable_updated`
Seems good. I'd like to test it on travis with a python < 3.4.2 before i merge. Thank you
added integration tests, can't mock etcd any soon. `client.py` is almost completly tested, lacks: - [ ] reconnect to another host - [ ] watch (eternal) - [ ] watch...
I believe this is user's responsibility. Just use gettext. I18n and l10n is serious business, with many gotchas that are hopefully tackled by adequate libraries. It's not Workalendar's job. In...
I've recently got a case where I want an optional to be either `Some env:VAR as Text` or `None Text` if the environment variable is not set. It's not exactly...
oops. was easy. What tricks me is the mix of imports and otherwise expression. I read this as ```hs Some (env:VAR as Text ? None Text) ``` In my mind...
This is not easy to address :/. The best idea I got so far adds a lot of complexity, and I hope someone comes with something simpler: - require implementations...
Of course the standardization and the implementation of this mechanism can be postponed after the standardization ot the original issue, that IMO adds value by itself, because at the moment...
@singpolyma I suggested a similar idea [here](https://discourse.dhall-lang.org/t/execute-local-files-at-import/242). I'm still half convinced by @Gabriel439 and @ari-becker's answers, and I like your idea (I guess I'm not a heavy dhall user, which...
What about `Double/round`, `Double/floor` and `Double/ceil` ? While probably useful, the problem is that it's hard to cover all formatting needs. For example, `Double/round 3.14 0` is `"3"` or `"3."`...