Bernt Røskar Brenna
Bernt Røskar Brenna
A minimal wsgi app also fails: ```python def simplest_wsgi_app(environ, start_response): print(environ) start_response('200 OK', [('Content-Type', 'text/plain')]) return [b"hello from wsgi!\n"] ``` With `TypeError: can't pickle _asyncio.Future objects`
The minimal wsgi app works if I use a modified WSGIHandler: ```python class MultiprocessCompatibleWSGIHandler(WSGIHandler): def _get_environ(self, request, body, content_length): environ = super()._get_environ(request, body, content_length) del environ['asyncio.loop'] del environ['asyncio.executor'] del environ['aiohttp.request']...
I created a PR with a failing test: https://github.com/remix-run/react-router/pull/9396 It looks like this only happens when using `createHashRouter`, it works as expected with ``. This test succeeds: ``` describe("when using...
How would a dev machine be set up to be able to test the server-side stuff? I currently have a Windows 10 machine joined to a AD domain. I have...
The only way I can think of is to start xdotool from the plugin: http://manpages.ubuntu.com/manpages/bionic/man1/xdotool.1.html
Python's `argparse` (https://docs.python.org/3/library/argparse.html) has `description` and `epilog`, I suggest to implement something similar in kotlinx-cli as well. ``` parser = argparse.ArgumentParser( prog='ProgramName', description='What the program does', epilog='Text at the bottom...