spacemanspiff2007

Results 233 comments of spacemanspiff2007

Would it be possible to pass this in as an argument or add another list for pathts that will be suppressed completely?

It's just that these lines add up and currently a normal trace back is ~3 screens long for my application. I guess I can do this in post processing with...

Yes, it is because it's like this: my_code -> asyncio/file1 -> my_code -> aiohttp/file2 -> aiohttp/file3 The full trace back from the simple testcase above is like this: ``` ------------------------------...

If you can tell me what you are trying to do maybe I can help out. Also it would be nice if you can merge my small PRs first so...

Sounds great and I am really looking forward to it. What I'd really love is to get the frame data and then modify how stackprinter formats them e.g. ```python parts...

I'll take a look at it - thanks for the hint!

I realize I can run an async future with ``` app = FastAPI(title='TestAPI', on_startup=async_func()) ``` How can I add a non-async blocking function to the worker from there? I just...

It I want to process the result it will block, too. I was looking for a way to run a function in the threadpool or however it is implemented in...

Thank you very much for this detailed answer! ```starlette.concurrency.run_in_threadpool``` will definitely do the job!

I would love to see ``Field`` documented. It really confused me that there is no documentation of possible Field args in the docs.