David Feldman

Results 6 issues of David Feldman

The readme mentions: > Possible future improvements might include an "ES6 mode" using the u flag, which would allow for more concise representations of astral plane properties and sets. I...

In `django-rest-framework` version 3.14.0, some new http status codes (102, 103, 421, 425) were added. See this commit: https://github.com/encode/django-rest-framework/commit/5bea22f32179276596b4c8152616d54a735a5341 It would be ideal if [status.pyi](https://github.com/sbdchd/djangorestframework-types/blob/master/rest_framework-stubs/status.pyi) could be updated to reflect...

bug

serializers are currently typed as Any: https://github.com/sbdchd/djangorestframework-types/blob/2a445463313bced492b7e4401d964f7855fac33c/rest_framework-stubs/serializers.pyi#L83 https://github.com/sbdchd/djangorestframework-types/blob/2a445463313bced492b7e4401d964f7855fac33c/rest_framework-stubs/serializers.pyi#L192 The upstream project made these generic at some point. Some excerpts: [Base Serializer](https://github.com/typeddjango/djangorestframework-stubs/blob/9d33237f790cf198bb8d66aecae5ccaf0bbdaaeb/rest_framework-stubs/serializers.pyi#L70-L83) [Serializer](https://github.com/typeddjango/djangorestframework-stubs/blob/9d33237f790cf198bb8d66aecae5ccaf0bbdaaeb/rest_framework-stubs/serializers.pyi#L123-L126) [Model Serializer](https://github.com/typeddjango/djangorestframework-stubs/blob/9d33237f790cf198bb8d66aecae5ccaf0bbdaaeb/rest_framework-stubs/serializers.pyi#L185-L221) It would be great if these...

enhancement

It is not always desirable to mutate Ruby's global namespace. This PR creates a "safe" require, allowing the user to manually include the DSL into the desired scopes (see the...

**Describe the bug** The `load_enum_name_overrides` function uses a decorator to cache function execution. However, the function internally uses the global variable `spectacular_settings.ENUM_NAME_OVERRIDES`, which is actually not constant. So whichever set...

bug

Assuming you only intend to use one of the two **rate limit** backends, loading it causes an import warning for the other one: ```python from dramatiq.rate_limits.backends import RedisBackend ImportWarning: MemcachedBackend...

bug