Andrew

Results 9 issues of Andrew

# Description Add field `can_manage_video_chats` to `ChatMemberOwner` - New feature (non-breaking change that adds functionality) # How has this been tested? No tests, just add field ## Test Configuration -...

enhancement
2.x

# Description ~~In this PR I add new argument to errors handler registration that decides whether the following callback notifications should be made after a successful callback notification in a...

2.x

# Description Cleaunp will clear unused locks to prevent memory overflow. **❗️ MUST BE REVIEWED ❗️** ## Type of change - Breaking change (fix or feature that would cause existing...

3.x

# Foreword - Code should be in bot directory - Command should be running outside the bot directory # Steps For **non-windows** users - replace "\\" with "/" 1. `python...

bug

## Foreword * Code should be in `bot` directory * Command should be running outside the `bot` directory ## Steps 1. `python -m aiogram_i18n extract -i '.\bot' -o '.\locales\test.ftl' -cm...

bug

## Why deprecate built-in FTL Extractor? * Has many bugs, such as #32 and #33 * Is not maintained * Uses `regex` for parsing `.ftl` * Uses large `libcst` instead...

enhancement

```python @router.message( or_f( Command("language", "lang"), LazyFilter("settings-lang"), ), ) ``` ## Excepted behaviour: Handler reacts on: * commands: "/lang", "/language" * text-commands: "lang", "мова" ## Current behaviour: It does not react,...

bug

I use this methods to serialize text into Message/Term/etc in my Fluent Extractor. It would be great to make them public

# Description `inspect.getfullargspec(callback)` can't process callback if it's arguments have "ForwardRef" annotations in Py3.14+ This PR replaces the old way with `inspect.signature(callback)` and add `annotation_format = annotationlib.Format.FORWARDREF` argument to it...

3.x