Caleb Hattingh
Caleb Hattingh
@ncoghlan So I'm kind of in love with `Tools/freeze/freeze.py` in the CPython source, particularly how it bundles the **Python stdlib code** into the frozen executable as C files containing arrays...
Thanks for the links! I did not know about the pkgutil problem (haven't tried "-m"ing anything yet).
It isn't only `echo` obviously, I think I'm seeing the same issue with expanding `PWD` for `docker run` invocations. The workaround works, but it's annoying to have to remember to...
Same. I'm on current master: ``` $ xonfig +------------------+-------------------------------------------------------+ | xonsh | 0.9.13 | | Git SHA | 49cd2812 | | Commit Date | Jan 31 06:16:59 2020 | |...
Appears to be this one: https://github.com/prompt-toolkit/python-prompt-toolkit/issues/1023 And was reported upstream as a Python bug here: https://bugs.python.org/issue39010
It appears that inserting this at the top of one's `.xonshrc` will work around the issue: ``` def enable_selector_event_loop(): try: # These instructions from # https://docs.python.org/3/library/asyncio-eventloop.html?highlight=proactor#asyncio.SelectorEventLoop import asyncio import selectors...
Ok, I'll have a look. My first plan is to add a new CLI parameter to xonsh that will control the event loop policy: https://docs.python.org/3/library/asyncio-policy.html#asyncio.DefaultEventLoopPolicy The interface might look something...
Can it be expressed in rust using the upstream tantivy crate?
Hi @afbarbaro 😄 This is the old problem of how stemmers don't always do what we think they do. Here's a small program I made to test queries quickly: ```python...
> so I see that the stemming is indeed applied to the query text when using index.parse_query but it is not applied to the text given to Query.term_query. Does this...