dreid
dreid
core.match has user defined patterns. https://github.com/clojure/core.match/wiki/Extending-match-for-new-Patterns
I profiled this briefly using the first 10 files from the attached test program: ```console > python -m cProfile -o flake8.prof -m flake8 -- --select I001,I002,I003,I004,I005 files/file00*.py ``` And the...
`Klein(map=Map(converters={'custom_enum': EnumConverter()}))` seems like a reasonable way to spell this. It's also already exposes the `Map` instance as `Klein.url_map` and it happens to be mutable (but adding things to `Map.converters`...
It is a thing from [a branch](https://github.com/twisted/klein/tree/forms-and-sessions). This should probably get assigned to @glyph
This is not a problem unique to klein. Consider the following invocation of twistd's web plugin: ``` $ echo "Hello, world!" > hello.txt $ twistd -n web --path hello.txt 2014-03-14...
It's an issue with `twisted.web.static.File`.
I think that is a worthwhile approach even if @hawkowl or @glyph (or anyone else really) decides to address it in Klein. (Note: I know longer work on Klein due...
I'm totally +1 on replacing the abuse of Componentized with proxyForInterface.
This actually has nothing to do with Klein resources not providing `_IEncodingResource`. The problem is that Klein manually invokes the rendering machinery on a resources returned from klein handlers, and...
It may also be possible to cobble together a new `server.Request` instance after initial traversal has happened and invoke `process` on that in such a way that it uses the...