Shahriar Heidrich
Shahriar Heidrich
@mqudsi Mind turning this into a plugin? The statusline stuff that comes with neomake is underwhelming and Airline adds a lot of things people might not necessarily need (and does...
@danuker Making `nan` yield infinite cost / worst possible fitness was my immediate thought as well, so I've been using custom fitness functions that do just that as a workaround:...
For anyone who needs this urgently: I created a separate package containing my draft from #17: https://github.com/smheidrich/json-stream-to-standard-types
I don't like the implementation either to be honest - it's much simpler to implement with recursion, but then you're needlessly limited by Python's recursion depth limit. No idea if...
It's not just on Windows. On Linux too `*` should match files and directories, but PyFilesystem's glob yields only files... is there any kind of system where people would expect...
This would also be nice to have when using cookiecutter via its Python API as a "directory-level template engine", e.g. for writing out dummy directory structures in automated tests etc....
As this is basically a subset of the functionality offered by higher-kinded types/TypeVars (HKTs) requested in #548, I'm wondering if it might make sense to have this as a first...
#13494 which, AFAICT, should have fixed the generalized case mentioned by @sobolevn has been merged by now, but this is still broken for `__slots__` specifically, I guess because `__slots__` was...
@anieuwland Given that specific snippet you posted, Mypy does complain, at least for me: ```console $ mypy example.py example.py:7: error: Argument 1 to "func4" has incompatible type "ndarray[Any, dtype[unsignedinteger[_16Bit]]]"; expected...
If that does indeed solve it, it would be nice if it could be explained in the documentation somewhere, perhaps as an extra section on network timeouts.