-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add type annotations and rework some None/unset/default cases #3201
base: master
Are you sure you want to change the base?
Conversation
…ermit reloader without public tracebacks
this simply forces the specific test to work. much more work to be done to properly unbreak.
raise ValueError("Invalid header map behaviour: %s" % val) | ||
|
||
|
||
class OnFatal(Setting): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Naming pattern clash. Sounds like Server Hook but is not implemented as such.
Thanks for the patch. However I don't think having type annotation external to the project will be convenient on the long term. This introduces too much constraints as you mention. Also do we really need to introduce type annotation? What would be the addition there for the project? I think the synttax makes the code barely readable and only adapted for those runing an IDE or vscode. Also I don't want to go to the path we have to set specific rules or properties to ignore some results during type checking. IMO we would better invest in adding property base checking or equivalent there. |
Apparently we can ship type annotations in separate
*.pyi
files right now, with no need to await dropping 3.7 compat and no obvious harm to people that have no use for them. Reworking #2377 I ended up with a certainly still imperfect, but already somewhat useful set of annotations. A few default settings in gunicorn popped out as odd:--config=""
does not disable reading configuration. the next best thing, setting--config=/dev/null
loudly complains--reload
has non-obvious side-effects in error handling, and setting--reload-extra=
is silently ignored when set in isolationself
method arg.docs/gunicorn_ext.py
to keep documentation unaffectedgid = abs(gid) & 0x7FFFFFFF
<= now unnecessary and broken for systems that actually use group id > 2**32 (see gunicorn/util.py set_owner_process Mangling gid on RHEL8 Google Cloud Platform (very large int group id) #3212)gevent_pywsgi
worker class (but this was already noticed independently, see Access log formatting is wrong when using gevent_pywsgi worker class #2940)This is primarily an invitation to discuss potential default settings changes, the attached patches serve as clarification.
Advantages of shipping type annotations:
Disadvantages of shipping type annotations:
Related
Fixes: #2833 #2374 #1393