David Eyk
David Eyk
I've been noticing that Markdown emphasis characters (`*` and `_`) are not consistently rendered as ``, and frequently come through as plain `*` and `_`. I finally figured out that...
In using `file_update` in concert with `text_ensure_lines`, I find that my remote files are being converted from unix-style `\n` to windows-style `\r\n`. I see nothing obviously wrong with the code...
I've got ntfy working beautifully in OS X on Python 3.5... when in a bare iTerm2 session. I typically work inside of tmux though, and inside of tmux, `ntfy send...
The traditional way of managing Python 2.7/3.x compatibility is to use `from __future__ import unicode_literals`, allowing for a more disciplined string/bytes distinction. That would probably be a good direction for...
Thanks!
Hey, I just wanted to say thanks for the library. I needed a simple YAML parser that I could strip down for a custom application, and poyo fits the bill....
* [x] I have checked the [Common Problems](https://github.com/kickscondor/fraidycat/wiki/Common-Problems) page. * [x] I have searched the issue tracker for a bug that matches the one I want to file, without success....
Is there any interest in adding async versions of the functions here? This is such a useful toolkit in sync land, but the divide between iterators and async iterators is...
#28 appears to have fixed a problem with the `--failed-first` option in 0.8.0, but `--failed-first` breaks for me in the latest version with the following traceback: ``` $ pytest --failed-first...
Scans and queries really could benefit from caching.
The #2 PR appears to have dredged up a bunch of problems. In mucking around with `parallel` I've realized that `sequence` and `selector` _leak_ child return values: ``` tree =...