Carl Meyer
Carl Meyer
Is there a reason this project isn't released on PyPI?
The top of the frameworks list says "This is an alphabetic list of frameworks known to support WSGI. The level and nature of their support sometimes varies, as do the...
This is similar/related to #3, but it's a broader issue, not specific to Wikipedia. There is no context-sensitivity in the replacement, so we've had cases where a link to a...
The except clause wrapping all of paginate() says "except KeyError, AttributeError:". This is broken (needs parens), so AttributeErrors are not actually caught. The symptom of this is that if you...
If you set PAGINATION_INVALID_PAGE_RAISES_404 to True, the autopaginate call does indeed raise Http404, but this is then caught by a catchall "except Exception" in Django's template system, resulting in a...
Needs a LICENSE file to clarify.
The Chunk key field is a CharField, which can take almost any kind of character data, including Unicode, spaces, whatever. In the templatetag, the chunk key is used as part...
Thanks for your work on these stubs! We are adding type annotations to our Django-based server codebase at Instagram, and we'd like to use (and contribute back to) this project....
Unquoted forward references are valid in stub files, but not at runtime; when applying stubs to a module, retype should quote them when necessary to avoid creating a module that...
I have a case where I need to know whether or not the start date of a recurrence (given a period, an interval, and a `dtstart`) is far enough in...