ffunenga

Results 6 comments of ffunenga

For further consideration: I am now seeing that an [Async tutorial appears to be in the works](https://github.com/python/cpython/issues/79012) since September 2018. This looks nice. The ["Three Ways To Execute Async Functions"...

I'll point out some details I've noticed and propose some alternatives (doesn't mean they are better, they are just ideas on the table): - `struct Pattern` - Why don't we...

I've added a new section to the wiki: https://github.com/docopt/docopt.c/wiki#non-recursive-similar-to-pythonic-approach It might be easier to think about the required `structs` after defining the algorithm.

I think I've found a problem that complicates things in [STPA](https://github.com/docopt/docopt.c/wiki#similar-to-pythonic-approach-stpa)... In python, it's simple to make a list and append things to it, since the the garbage collector will...

@jakehu Why to do you need the first line? ```python async with conn.transaction(force_rollback=True): # (...) ``` Would your code do what you want if you removed the `with` statement and...

On Windows, I am using this `ctypes` hack on my main function: ```py # (...) from os import name as os_name def main(): """Main function""" if os_name == "nt": #...