Mitar

Results 578 issues of Mitar

Is there a way to autoreplace content with ricth/HTML content as user types it in? For example, if user types in an URL, I would like that this URL automatically...

I know that Python 3.7/3.8 support is still in progress and I was testing the `master` branch and found some differences so I am reporting them to maybe use them...

```python >>> import typing >>> import collections >>> import pytypes >>> pytypes.is_of_type(collections.defaultdict(list), typing.Dict[str, typing.List]) Traceback (most recent call last): File "", line 1, in TypeError: Parameterized generics cannot be used...

Example: ``` import typing from pytypes import type_util Container = typing.Union[ typing.List['Data'], ] Data = typing.Union[ Container, str, bytes, bool, float, int, dict, ] type_util._issubclass(typing.List[float], Container) ``` ``` Traceback (most...

help wanted

Currently it is trying to guess the module, but this is not always possible. For example, it does not work for me if I call `get_type_hints` while the module is...

If I understand correctly, the following class `Bar` has all parameters set to `Any`: ```python from typing import * A = TypeVar('A') class Foo(Generic[A]): pass class Bar(Foo): pass ``` But...

Could this be an argument, so that one can use kid (or random kid) and still get keys output to stdout?

[In documentation](https://github.com/dunglas/vulcain/blob/master/docs/graphql.md#using-graphql-as-query-language-for-vulcain) it says: > Note: a higher-level library dedicated to Vulcain is being written. Is this available somewhere?

enhancement

Like bytes per second.

This looks really great. When I try to use it the following works: ``` import './views/*'; ``` But this does not: ``` import * as Components from './components/*'; ``` When...