Vladimir Rutsky

Results 29 issues of Vladimir Rutsky

If [`Operation.SetConfig()`](https://github.com/chzyer/readline/blob/2972be24d48e78746da79ba8e24e8b488c9880de/operation.go#L452) is called on already active readline instance (that e.g. read some lines), this may lead to data race between updating [`Operation.history`](https://github.com/chzyer/readline/blob/2972be24d48e78746da79ba8e24e8b488c9880de/operation.go#L257) in `ioloop()` and [resetting history](https://github.com/chzyer/readline/blob/2972be24d48e78746da79ba8e24e8b488c9880de/operation.go#L469) in `SetConfig()`,...

One of the potential uses of aiofiles is to read `sys.stdin` asynchronously, which is currently not possible with only publicly available `aiofiles.open` function.

I believe this is fundamental limitation of current approach of running blocking operations in threads, and I don't see any way to workaround this. Any ideas?

Removes scary (ignored) error messages during playing: ``` TASK [defunctzombie.coreos-bootstrap : Check if bootstrap is needed] *********** fatal: [master]: FAILED! => {"changed": false, "failed": true, "rc": 1, "stderr": "", "stdout":...

E.g. "Task", days of week, "Ttl".

bug

1. `czml.czml.Clock` is not exported, i.e. it's not available as `czml.Clock` as other primitives are (but `czml.CZMLPacket` accepts `dict` of properties for `Clock`). 2. `currentTime`, `multiplier`, `range` and `step` attributes...

According to [this](https://github.com/AnalyticalGraphicsInc/czml-writer/wiki/InterpolatableProperty) every interpolatable type should have them.

According to [tdlib documentation](https://core.telegram.org/tdlib/docs/td__json__client_8h.html) `td_json_client_receive()` and `td_json_client_execute()` share control on returned string buffer memory allocation and deallocation: > Returned pointer will be deallocated by TDLib during next call to td_json_client_receive...

Currently I can only compile CUDA file to `cubin` using `pycuda.compiler.compile()` for specific real architecture and then load it using `pycuda.driver.module_from_buffer()`. AFAIK to distribute CUDA file without compiler/CUDA toolkit I...

Cuda source code compilation fails if it's passed to `pycuda.compiler.SourceModule` as Python 3's `binary` (e.g. when source was read from filesystem in binary mode). In [this](https://github.com/inducer/pycuda/blob/dbbb6fe9fa6dd0f225fc32193968eef7559398e8/pycuda/compiler.py#L190) code: ``` if not...