-
uWSGI is a bit of a weird package, since it is very low level and mostly written in C and the exported python packages for intereacting with uWSGI do not exist at runtime, unless the python application is started using uWSGI. So by default stubgen, and more importantly stubtest will not work, unless they are also run inside a uWSGI process. For stubgen/stubdefaulter that's not as big of a deal, since by hacking together a new wsgi script I can run either of them inside uWSGI and get baseline stubs for So I'm trying to get an idea for how much willingness there is to take on either additional technical debt, by special casing uWSGI in stubtest or risk less maintainable stubs by skipping stubtest for uWSGI altogether. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
The |
Beta Was this translation helpful? Give feedback.
The
gdb
stubs have the same situation, so I think this will be fine. There's discussion about thegdb
stubs on python/typeshed#8013.