meejah

Results 289 comments of meejah

This might be something considered a Twisted bug? This happens to me on any Twisted program where you can hit "control-C" while the program is shutting down (i.e. the reactor...

This seems related to the use of `input()` (a synchronous input method) inside a bunch of async code -- nothing gets a chance to process anything until "return" is hit...

I haven't investigated deeply, but I strongly suspect this is a Python issue with how Zip files work? (That is, the receiving side is receiving a Zip file but IIRC...

Yeah, in principal that's certainly what _should_ happen. Non-ZIP files are streamed to disk, yes.

I suspect this is probably an issue with the underlying Twisted networking library (investigation needed).

@aridell often people have system Tor instances running; txtorcon can work with those or start its own tor client. I personally wouldn't bundle tor, but direct people to torproject.org to...

Autobahn (websocket library) is pure-python enough to work with PyPy...

Thanks for the PR! I haven't reviewed it, but that Windows thing is familiar and almost certainly _not_ the fault of your code...I've clicked the button to let the other...

I'm not sure if this will be possible: `txaio` is designed around being selected at `import` time -- in Autobahn, we have "framework-specific" classes that do the `txaio.use_*()` calls (and...

Ah, yes @olafmandel is right there are wrappers/txaio-provided objects in both the Twisted *and* asyncio cases. Thanks! And yes, I agree we should either implement the enhancement you're asking for...