Kyrylo Shpytsya

Results 21 comments of Kyrylo Shpytsya

@Peilonrayz this works, both on 3.7.3 and 3.6.8 (which include "new" and "old" versions of `typing`). I am aware that `T` doesn't hold any cool information but is merely a...

So, do you think something like that should be included as a part of `typing_inspect` and not be left as "an exercise for the reader"?

From my experience, pytypes still lacks proper python 3.7 support. On Fri, 3 May 2019, 09:40 Stefan Richthofer, wrote: > Maybe pytypes.get_arg_for_TypeVar(typevar, generic) > > is what you are looking...

Regretfully, solution from https://github.com/ilevkivskyi/typing_inspect/issues/35#issuecomment-488386120 fails in case of inheritance: ```py from typing import List, TypeVar import typing_inspect T = TypeVar("T") class L(List[T]): def f(self) -> None: print(typing_inspect.get_args(typing_inspect.get_generic_type(self))) class L2(L[int]): pass...

@thangbn , @danizen are there any plans on completing this any time soon, or should I rather try tackling this myself from scratch?

This is still an issue with v1.2.0 (I have English and Ukrainian layouts). If it matters, I use "i3" as WM and "xxkb" for per window layouts. .xxkbrc: XXkb.image.path: /usr/share/xxkb/...

Thank you for the detailed explanation. I am aware of the kernel config checker in Docker ebuild, but since I use a non-standard CPU scheduler (PDS, nee BFS), I have...

Some further investigation with mock cloudformation server shows that `rusoto_cloudformation` chokes on parsing the following response: ```xml ``` and works ok if an arbitrary xml tag is added after the...

To answer my own question, a freshly implemented plugin that can be used as: ``` use_plugin("pypi:pybuilder_scm_ver_plugin") ```

I do realize all the differences between external and internal plugins. As to why, the answer is simple: `setup.py bdist_wheel` seems to be quite a roundabout (and slow) way of...