Paul J. Dorn

Results 28 issues of Paul J. Dorn

* No harm in merge conflicts: can always be trivially regenerated thanks to https://pypi.org/project/pyupgrade/ with its `--py37-plus` flag * This is an updated version of https://github.com/benoitc/gunicorn/pull/2836

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...

We should cleanup those rather unreadable low-level fcntl calls. The stdlib provides single-call functions for these now. (Replacement is not 100% equivalent, as [they might call](https://github.com/python/cpython/blob/ec1398e117fb142cc830495503dbdbb1ddafe941/Python/fileutils.c#L1504) `ioctl(.., FIO.., NULL)` instead,...

1. A few other PRs have degraded CI results because Github does not provide Python 3.7 on the default macos-latest runners. * Suggestion: just drop back to macos-13, an try...

networkd renamed section DHCP=>DHCPv4. Two options had been documented at the time, they include DHCPv6: https://github.com/systemd/systemd/commit/4f7331a85eee2134cc2383a9eeb0445593a6be15 - Not so most of the others. They need to move to DHCPv6 section....

question
needswork
community

New CI task: complain if `docs/source/settings.rst` has changed after invoking `sphinx-build`, indicating someone (me) has forgotten to run `make -C docs html` * Its not a tox env because I...

The report in https://github.com/benoitc/gunicorn/issues/2923 may have been not caused by a bug in Gunicorn or gevent in the first place. In any case, going from "this particular exception" to "each...

working on it :)

* missing: document difference between behavior of `< 3.10` and Python `>= 3.10` * missing: document `Type=notify-reload` (systemd `>= v253`) * missing: #2856 -- automatically shutdown old master after handling...

Mixing sys.executable and *parsed* argv produces unintentional sys.path changes on re-exec: ``` # python -m gunicorn my:app Booting worker with pid: 201117 [..] # kill -USR2 $(pgrep --oldest -f "gunicorn")...

Cleanup, follow-up to #3189 - There is a change of config default in here, but for our workers that only impacts who sees the warning about the *ignored* setting. Rest...