kawing-chiu
kawing-chiu
Flummox is one of the best flux implementation out there currently IMHO. It would be great if the docs are further enhanced. Especially I think guides on these two topics...
Hi. I'm using ncm2 with LanguageClient-neovim to write python code. `:echo ncm2#_s('sources')['LanguageClient_python']` shows that `'\.'` is in the `complete_pattern` list. However, after typing `.`, there is no popup. For example,...
Sometimes I want to take full control of all levels of all loggers. For example when production environment is detected. For a certain logger it could be done by calling...
I'm a zmq user, currently evaluating nng for a new project. It turned out to be a rather frustrating experience. I spent two hours searching on the web and reading...
个人感觉,目前easyquotation通过shdjt获取的代码列表有时候会不够准确,可以考虑再加上[东财](http://quote.eastmoney.com/stock_list.html)这个列表,例如今天st长油重新上市,shdjt代码列表中就没有及时更新。(但东财这个列表里面没有指数)
From the description of the project, it seems that curio is not supported. Similar to trio, I think curio is also a great async lib that is worth supporting. Is...
[Here](https://github.com/jupyter/qtconsole/blob/master/examples/inprocess_qtconsole.py#L23) in the inprocess_qtconsole example, it seems that the `show_banner` option has no effect, and I couldn't find anything about it in `qtconsole`/`ipykernel`/`jupyter_client`.
Currently (pyzmq version 17.1.2) in the cffi backend, when `copy=False` is passed, `recv()/recv_multipart()` returns frame object of type `zmq.backend.cffi.message.Frame`, instead of `zmq.Frame`. ``` In [10]: msg = router1.recv(copy=False) In [11]:...
I'm using a socket subclass in my project. It seems that currently there is no api to ask context to use my socket subclass. For now, I use the private...
Hi. I ran into an issue when using tomlkit on windows with multiprocessing. ```python import multiprocessing as mp import tomlkit class Worker: def run(self): print(self.db_conf) print(self.db_conf['path']) # bug here, get()...