speqz
speqz
Hi all, I'm with following code: ``` import argh @argh.expects_obj @argh.arg('-output', default='', help='') def mainx(args): pass if __name__ == "__main__": argh.dispatch_command(mainx) ``` and build with cython ``` cython --embed mainx.pyx...
Hi All, I added a patch to response PROPPATCH for windows. Let dav-ext work with windows explorer. Windows need LOCK and PROPPATCH to put a file. [proppatch.patch.gz](https://github.com/arut/nginx-dav-ext-module/files/3835180/proppatch.patch.gz)
Need to do this before write(response.content) ``` # If the response supports deferred rendering, apply template # response middleware and the render the response if hasattr(response, 'render') and callable(response.render): response.render()...