Matej Spiller Muys
Matej Spiller Muys
stubgen: ``` class AuditContext(collections.namedtuple('AuditContext', ['user_id', 'ip'])): def from_request(cls, request): pass # somecode ``` generated as pyi: ``` class AuditContext: @classmethod def from_request(cls, request): ... ``` should be: ``` class AuditContext(collections.namedtuple('AuditContext',...
Lock file is getting changed each time somebody runs the pipenv sync and lock. What happens is that markers are randomly applied. Sometimes: ``` "markers": "python_version < '3.11'", ``` ```...
### Summary Support for cdk deployment instead of cloudformation. Commands: synthesize deploy destroy metadata ### Issue Type Feature Idea ### Component Name cloudformation ### Additional Information ```yaml (paste below) ```...
There is [pyenv-virtualenvwrapper](https://github.com/pyenv/pyenv-virtualenvwrapper) but it is largely unmaintained (last commit 5 years ago). I would like to achieve compatibility with virtualenvwrapper since under the hood virtualenvwrapper supports venv and virtualenv...
There are some inconsistencies based on specification: https://docs.kucoin.com/#actual-fee-rate-of-the-trading-pair GET /api/v1/trade-fees?symbols=BTC-USDT,KCS-USDT Issues: 1. symbols is said to be optional (it is not -> 400 error) 2. symbols can be listed up...
**Describe the bug** In 2023 we used experimental-string-processing. This was enabled without preview style enabled. However now in 2024 the experimental string processing flag was removed and replaced with enable-unstable-feature...
**Describe the feature** Based on some documentation there is a way to return refresh token expiration via value in response 'refresh_token_expires_in'. https://learn.microsoft.com/en-us/linkedin/shared/authentication/authorization-code-flow?context=linkedin%2Fcontext&tabs=HTTPS1#response I would like to have this information when...
If you have a nested form on web or if you want to do validation it would be prefered to list the errors inside nested schema not just that nested...
Base on the documentation that validation does not occur on serialisation anymore https://marshmallow.readthedocs.io/en/stable/upgrading.html. There is example how to workaround. However this alternative is flawed since it does not work if...
There is inconsistent field_name meaning when validating fields: **raising ValidationError**: it expected data_key as field_name **@marshmallow.validates**: it expects field name And the same issue for: ```py raise ValidationError( { "field_a":...