Volodymyr Vitvitskyi
Volodymyr Vitvitskyi
I haven't found `memoise` function implementation. I suggest to have at least two implementations with weakref and regular dictionary.
Problem ------- The project avoids installing own dependencies so external library needs to be vendored or idea of having own small impl. should be improved. Current implementation shows the right...
**Describe the bug** Not able to run the tests in parallel using pytest-xdist plugin. pytest option for SSL `--amqp-ssl-option` fail serialisation of the pytest options for worker. The option has...
I have found that autocomplete is not working in such case ``` (def x (interl ``` nothing happens, while REPL-y appends to `interleave`
[Chapter 5.3](http://www.diveintopython.net/object_oriented_framework/defining_classes.html) contains the following confusing statement. > Python classes do have something similar to a constructor: the __init__ method. Probably we should mention `\__new__` which really creates an instance...
`-e /home/volod/proj/my-proj[extra]` vs `my-proj[extra]==19.6.0`
Fix issue when docstring passed as first argument explicitly - parse function fails on (string? doc) assert It happens due to the fact that passed `doc` variable at compile time...
Hi, I found that it would be nice to support the following case ``` In [64]: sv.Spec('>0.8.0').select([sv.Version('0.8.1')]) Out[64]: Version('0.8.1') In [65]: sv.Spec('>0.8').select([sv.Version('0.8.1')]) # Expected to get 0.8.1 but it returns...