Peter Zaitcev / [USSX] Hares

Results 32 issues of Peter Zaitcev / [USSX] Hares

Could you support lists in your api? In example, have such functions: ```python def is_list_type(tp) -> bool: pass is_list_type(List[int]) # True is_list_type(Tuple[int, str]) # False ```

It has closing quot-symbol in the commented lines, so co `content_by_lua_block` should be used instead of `content_by_lua` Should be: ```nginx location /test { content_by_lua_block { local shell = require("resty.shell") --...

- Added LuaDoc strings compatible with the majority of Lua extensions in IDEs - Initially designed for and tested at [EmmyLua](https://github.com/EmmyLua)

Hi I was searching for some typing inspection tools and found none that can both generate a python stub file (`.pyi`) and use the data from the runtime. This is...

```python def func(s, test): """ Returns `True` if the string length is greater than the given integer. :param s: str :param test: int :return: bool """ pass ``` This is...

enhancement
good first issue
Hacktoberfest

Closes #341 ### Changes: * Updated `tests.entities` and `tests.test_collections` to include alternative forms of the same collection types (like `builtins.list` ("builtin") and `typing.List` (~~"generic"~~ "unbound") in addition to the existing...

Hi. Is there any option to encode enums by their name not their value? I.e., is there any options to make this code: ```python from enum import Enum, auto from...

enhancement
help wanted

Hi I would like to ask to add extended support for user-defined generics. This means that the class should define its custom decoder and encoder which then accepts its data,...

Hi there It would be nice to add milliseconds support to this tool I was able to do that at runtime by overriding some internal values with the following code...

### Root Casuse Actually, the `+=` operator took the HOCON definition *too* literally. When the `x += y` was met, it created a substitution for `x`. Then, when the entire...