| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: python311-gunicorn | Distribution: SUSE Linux Enterprise 15 |
| Version: 20.1.0 | Vendor: SUSE LLC <https://www.suse.com/> |
| Release: 150400.12.6.1 | Build date: Thu Apr 18 15:07:10 2024 |
| Group: Development/Languages/Python | Build host: h01-ch4d |
| Size: 5285821 | Source RPM: python-gunicorn-20.1.0-150400.12.6.1.src.rpm |
| Packager: https://www.suse.com/ | |
| Url: https://gunicorn.org | |
| Summary: WSGI HTTP Server for UNIX | |
Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX. It's a pre-fork worker model ported from Ruby's Unicorn_ project. The Gunicorn server is broadly compatible with various web frameworks.
MIT
* Wed Apr 17 2024 mmachova@suse.com
- Add patch CVE-2024-1135.patch (bsc#1222950)
* Sun Apr 23 2023 mcepl@suse.com
- Switch documentation to be within the main package.
* Fri Apr 21 2023 dmueller@suse.com
- add sle15_python_module_pythons (jsc#PED-68)
* Thu Apr 13 2023 mcepl@suse.com
- Make calling of %{sle15modernpython} optional.
* Thu Nov 18 2021 steven.kowalik@suse.com
- Add patch support-eventlet-30-3.patch:
* Upstream patch to support eventlet >= 0.30.3
* Mon Jul 05 2021 alarrosa@suse.com
- Add a _multibuild file to separate the tests in another build
in order to break a cycle between: python-Django, python-aiohttp,
python-eventlet, python-geoip2, python-gunicorn, python-paramiko,
python-pyzmq and python-semantic_version.
* Tue Jun 29 2021 mimi.vx@gmail.com
- update to 20.1.0
- gevent and evenlet are BuildRequires for check
- add suggests
* document WEB_CONCURRENCY is set by, at least, Heroku
* capture peername from accept: Avoid calls to getpeername by capturing
the peer name returned by accept
* log a warning when a worker was terminated due to a signal
* fix tornado usage with latest versions of Django
* add support for python -m gunicorn
* fix systemd socket activation example
* allows to set wsgi application in configg file using wsgi_app
* document --timeout = 0
* always close a connection when the number of requests exceeds the max requests
* Disable keepalive during graceful shutdown
* kill tasks in the gthread workers during upgrade
* fix latency in gevent worker when accepting new requests
* fix file watcher: handle errors when new worker reboot and ensure
the list of files is kept
* document the default name and path of the configuration file
* document how variable impact configuration
* document the $PORT environment variable
* added milliseconds option to request_time in access_log
* added PIP requirements to be used for example
* remove version from the Server header
* fix sendfile: use socket.sendfile instead of os.sendfile
* reloader: use absolute path to prevent empty to prevent0 InotifyError
when a file is added to the working directory
* Add --print-config option to print the resolved settings at startup.
* remove the --log-dict-config CLI flag because it never had a working format
* Fri Dec 04 2020 code@bnavigator.de
- Neither pytest-cov nor standalone mock are true BuildRequirements
* Wed Apr 08 2020 mcalabkova@suse.com
- update to 20.0.4
* Ensure WSGI header value is string before conducting regex search on it.
* Use importlib instead of __import__ and eval
* Use Python default SSL cipher list by default
* Support str and bytes for UNIX socket addresses
* fixed the way the config module is loaded. __file__ is now available
* only support Python >= 3.5
* load the WSGI application before the loader to pick up all files
- Dropped patch pytest5.patch
* Tue Mar 31 2020 mimi.vx@gmail.com
- update to 19.10.0
- last with py2 support
* unblock select loop during reload of a sync worker
* security fix: http desync attack
* handle `wsgi.input_terminated`
* added support for str and bytes in unix socket addresses
* fixed `max_requests` setting
* headers values are now encoded as LATN1, not ASCII
* fixed `InotifyReloadeder`: handle `module.__file__` is None
* fixed compatibility with tornado 6
* fixed root logging
* Prevent removalof unix sockets from `reuse_port`
* Clear tornado ioloop before os.fork
* Miscellaneous fixes and improvement for linting using Pylints
* Mon Jul 22 2019 tchvatal@suse.com
- Add patch to work well with pytest5:
* pytest5.patch
* Thu Oct 18 2018 tchvatal@suse.com
- Version update to 19.9.0:
* Support python 3.7
* Tornado 5 support
* Eventlet 0.21 support
* Mon Jul 10 2017 jengelh@inai.de
- Ensure neutrality of description.
* Thu Jun 29 2017 tbechtold@suse.com
- update to 19.7.1:
- fix: continue if SO_REUSEPORT seems to be available but fails (:issue:`1480`)
- fix: support non-decimal values for the umask command line option (:issue:`1325`)
- The previously deprecated ``gunicorn_django`` command has been removed.
Use the :ref:`gunicorn-cmd` command-line interface instead.
- The previously deprecated ``django_settings`` setting has been removed.
Use the :ref:`raw-env` setting instead.
- The default value of :ref:`ssl-version` has been changed from
``ssl.PROTOCOL_TLSv1`` to ``ssl.PROTOCOL_SSLv23``.
- fix: initialize the group access list when initgroups is set (:issue:`1297`)
- add environment variables to gunicorn access log format (:issue:`1291`)
- add --paste-global-conf option (:issue:`1304`)
- fix: print access logs to STDOUT (:issue:`1184`)
- remove upper limit on max header size config (:issue:`1313`)
- fix: print original exception on AppImportError (:issue:`1334`)
- use SO_REUSEPORT if available (:issue:`1344`)
- `fix leak <https://github.com/benoitc/gunicorn/commit/\
b4c41481e2d5ef127199a4601417a6819053c3fd>`_ of duplicate file descriptor
for bound sockets.
- add --reload-engine option, support inotify and other backends (:issue:`1368`, :issue:`1459`)
- fix: reject request with invalid HTTP versions
- add ``child_exit`` callback (:issue:`1394`)
- add support for eventlets _AlreadyHandled object (:issue:`1406`)
- format boot tracebacks properly with reloader (:issue:`1408`)
- refactor socket activation and fd inheritance for better support of SystemD (:issue:`1310`)
- fix: o fds are given by default in gunicorn (:issue:`1423`)
- add ability to pass settings to GUNICORN_CMD_ARGS environnement variable which helps in container world (:issue:`1385`)
- fix: catch access denied to pid file (:issue:`1091`)
- many additions and improvements to the documentation
- improvement of the binary upgrade behaviour using USR2: remove file locking (:issue:`1270`)
- add the ``--capture-output`` setting to capture stdout/stderr tot the log
file (:issue:`1271`)
- Allow disabling ``sendfile()`` via the ``SENDFILE`` environment variable
(:issue:`1252`)
- fix reload under pycharm (:issue:`1129`)
- fix: make sure to remove the signal from the worker pipe (:issue:`1269`)
- fix: **gthread** worker, handle removed socket in the select loop
- fix: Ensure response to HEAD request won't have message body
- fix: lock domain socket and remove on last arbiter exit (:issue:`1220`)
- improvement: use EnvironmentError instead of socket.error (:issue:`939`)
- add: new ``FORWARDDED_ALLOW_IPS`` environment variable (:issue:`1205`)
- fix: infinite recursion when destroying sockets (:issue:`1219`)
- fix: close sockets on shutdown (:issue:`922`)
- fix: clean up sys.exc_info calls to drop circular refs (:issue:`1228`)
- fix: do post_worker_init after load_wsgi (:issue:`1248`)
- fix access logging in gaiohttp worker (:issue:`1193`)
- eventlet: handle QUIT in a new coroutine (:issue:`1217`)
- gevent: remove obsolete exception clauses in run (:issue:`1218`)
- tornado: fix extra "Server" response header (:issue:`1246`)
- fix: unblock the wait loop under python 3.5 in sync worker (:issue:`1256`)
- fix: log message for listener reloading (:issue:`1181`)
- Let logging module handle traceback printing (:issue:`1201`)
- improvement: Allow configuring logger_class with statsd_host (:issue:`1188`)
- fix: traceback formatting (:issue:`1235`)
- fix: print error logs on stderr and access logs on stdout (:issue:`1184`)
- Simplify installation instructions in gunicorn.org (:issue:`1072`)
- Fix URL and default worker type in example_config (:issue:`1209`)
- update django doc url to 1.8 lts (:issue:`1213`)
- fix: miscellaneous wording corrections (:issue:`1216`)
- Add PSF License Agreement of selectors.py to NOTICE (:issue: `1226`)
- document LOGGING overriding (:issue:`1051`)
- put a note that error logs are only errors from Gunicorn (:issue:`1124`)
- add a note about the requirements of the threads workers under python 2.x (:issue:`1200`)
- add access_log_format to config example (:issue:`1251`)
- Use more pytest.raises() in test_http.py
- fix: NameError fileno in gunicorn.http.wsgi (:issue:`1178`)
- fix: check if a fileobject can be used with sendfile(2) (:issue:`1174`)
- doc: be more descriptive in errorlog option (:issue:`1173`)
- fix: don't check if a file is writable using os.stat with SELINUX (:issue:`1171`)
- improvement: handle HaltServer in manage_workers (:issue:`1095`)
- fix: Do not rely on sendfile sending requested count (:issue:`1155`)
- fix: claridy --no-sendfile default (:issue:`1156`)
- fix: LoggingCatch sendfile failure from no file descriptor (:issue:`1160`)
- fix: Always send access log to syslog if syslog is on
- fix: check auth before trying to own a file (:issue:`1157`)
- fix: Fix Slowloris broken link. (:issue:`1142`)
- Tweak markup in faq.rst
- fix: gaiohttp test (:issue:`1164`)
- fix tornado worker (:issue:`1154`)
- fix: make sure that a user is able to access to the logs after dropping a
privilege (:issue:`1116`)
- improvement: inherit the `Exception` class where it needs to be (:issue:`997`)
- fix: make sure headers are always encoded as latin1 RFC 2616 (:issue:`1102`)
- improvement: reduce arbiter noise (:issue:`1078`)
- fix: don't close the unix socket when the worker exit (:issue:`1088`)
- improvement: Make last logged worker count an explicit instance var (:issue:`1078`)
- improvement: prefix config file with its type (:issue:`836`)
- improvement: pidfile handing (:issue:`1042`)
- fix: catch OSError as well as ValueError on race condition (:issue:`1052`)
- improve support of ipv6 by backporting urlparse.urlsplit from Python 2.7 to
Python 2.6.
- fix: raise InvalidRequestLine when the line contains malicious data
(:issue:`1023`)
- fix: fix argument to disable sendfile
- fix: add gthread to the list of supported workers (:issue:`1011`)
- improvement: retry socket binding up to five times upon EADDRNOTAVAIL
(:issue:`1004`)
- **breaking change**: only honor headers that can be encoded in ascii to comply to
the RFC 7230 (See :issue:`1151`).
- add new parameters to access log (:issue:`1132`)
- fix: make sure that files handles are correctly reopened on HUP
(:issue:`627`)
- include request URL in error message (:issue:`1071`)
- get username in access logs (:issue:`1069`)
- fix statsd logging support on Python 3 (:issue:`1010`)
- use last version of mock.
- many fixes in Travis CI support
- miscellaneous improvements in tests
- fix: Fix self.nr usage in ThreadedWorker so that auto restart works as
expected (:issue:`1031`)
- fix quit signal handling (:issue:`1128`)
- add support for Python 3 (:issue:`1066`)
- fix: make graceful shutdown thread-safe (:issue:`1032`)
- fix ssl options (:issue:`1146`, :issue:`1135`)
- don't check timeout when stopping gracefully (:issue:`1106`)
- add SSL support (:issue:`1105`)
- fix link to proc name setting (:issue:`1144`)
- fix worker class documentation (:issue:`1141`, :issue:`1104`)
- clarify graceful timeout documentation (:issue:`1137`)
- don't duplicate NGINX config files examples (:issue:`1050`, :issue:`1048`)
- add `web.py` framework example (:issue:`1117`)
- update Debian/Ubuntu installations instructions (:issue:`1112`)
- clarify `pythonpath` setting description (:issue:`1080`)
- tweak some example for python3
- clarify `sendfile` documentation
- miscellaneous typos in source code comments (thanks!)
- clarify why REMOTE_ADD may not be the user's IP address (:issue:`1037`)
- fix: reloader should survive SyntaxError (:issue:`994`)
- fix: expose the reloader class to the worker.
- convert to singlespec
- fix Sourc url
* Wed May 06 2015 benoit.monin@gmx.fr
- update to version 19.3.0:
* fix: issue 978 make sure a listener is inheritable
* add check_config class method to workers
* fix: issue 983 fix select timeout in sync worker with multiple
connections
* allows workers to access to the reloader. close issue 984
* raise TypeError instead of AssertionError
* make Logger.loglevel a classs attribute
* fix: issue 988 fix syntax errors in examples/gunicorn_rc
- additional changes from version 19.2.1:
* expose loglevel in the Logger class
* fix issue 977 fix initial crash
* document security mailing-list in the contributing page
- additional changes from version 19.2:
* optimize the sync workers when listening on a single interface
* add –sendfile settings to enable/disable sendfile. fix issue 856
* add the selectors module to the code base. issue 886
* add –max-requests-jitter setting to set the maximum jitter to
add to the max-requests setting
* fix issue 899 propagate proxy_protocol_info to keep-alive
requests
* fix issue 863 worker timeout: dynamic timeout has been removed
* fix: Avoid world writable file
* fix issue 941 set logconfig default to paster more trivially
* add statsd-prefix config setting: set the prefix to use when
emitting statsd metrics
* issue 832 log to console by default
* fix issue 908 make sure the worker can continue to accept
requests
* fix issue 867 Fix eventlet shutdown to actively shut down the
workers
- remove python-nose from BuildRequires: unneeded
- add python-mock and python-pytest-cov as test dependencies
- add python-unittest2 as test dependencies for SLE11
- remove version pinning for test requirements with sed
- reenable the tests
- move documentation files under the main package docdir
* Thu Dec 11 2014 axel.braun@gmx.de
- update to version 19.1.1
fix #835: display correct pid of already running instance
fix : fix PyTest class in setup.py.
fix #838: statsd logegr, send statsd timing metrics in milliseconds
fix #839: statsd logger, allows for empty log message while pushing metrics and restore worker number in DEBUG logs
fix #850: add timezonw to logging
fix #853: Respect logger_class setting unless statsd is on
fix #830 make sure gaiohttp worker is shipped with gunicorn.
fix #785: handle binary type address given to a client socket address
fix graceful shutdown. make sure QUIT and TERMS signals are switched everywhere.
support loading config from module (#799)
fix check for file-like objects (#805)
fix #815 args validation in WSGIApplication.init
fix #787 check if we load a pyc file or not.
fix #771: support tornado 4.0
fix #783: x_headers error. The x-forwarded-headers option has been removed in c4873681299212d6082cd9902740eef18c2f14f1. The discussion is available on #633.
fix: fetch all body in input. fix #803
fix: don’t install the worker if python < 3.3
fix #822: Support UNIX sockets in gaiohttp worker
fix #790 StopIteration shouldn’t be catched at this level.
add statsd logging handler fix #748
fix #809 Set global logging configuration from a Paste config.
fix RuntimeError in gunicorn.reloader (#807)
update faq: put a note on how watch logs in the console since many people asked for it.
details see http://docs.gunicorn.org/en/19.1.1/news.html#id1
- remove test
/etc/alternatives/gunicorn /usr/bin/gunicorn /usr/bin/gunicorn-3.11 /usr/lib/python3.11/site-packages/gunicorn /usr/lib/python3.11/site-packages/gunicorn-20.1.0-py3.11.egg-info /usr/lib/python3.11/site-packages/gunicorn-20.1.0-py3.11.egg-info/PKG-INFO /usr/lib/python3.11/site-packages/gunicorn-20.1.0-py3.11.egg-info/SOURCES.txt /usr/lib/python3.11/site-packages/gunicorn-20.1.0-py3.11.egg-info/dependency_links.txt /usr/lib/python3.11/site-packages/gunicorn-20.1.0-py3.11.egg-info/entry_points.txt /usr/lib/python3.11/site-packages/gunicorn-20.1.0-py3.11.egg-info/not-zip-safe /usr/lib/python3.11/site-packages/gunicorn-20.1.0-py3.11.egg-info/requires.txt /usr/lib/python3.11/site-packages/gunicorn-20.1.0-py3.11.egg-info/top_level.txt /usr/lib/python3.11/site-packages/gunicorn/__init__.py /usr/lib/python3.11/site-packages/gunicorn/__main__.py /usr/lib/python3.11/site-packages/gunicorn/__pycache__ /usr/lib/python3.11/site-packages/gunicorn/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/__main__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/__main__.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/arbiter.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/arbiter.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/config.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/config.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/debug.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/debug.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/errors.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/errors.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/glogging.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/glogging.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/pidfile.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/pidfile.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/reloader.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/reloader.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/sock.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/sock.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/systemd.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/systemd.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/util.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/__pycache__/util.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/app /usr/lib/python3.11/site-packages/gunicorn/app/__init__.py /usr/lib/python3.11/site-packages/gunicorn/app/__pycache__ /usr/lib/python3.11/site-packages/gunicorn/app/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/app/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/app/__pycache__/base.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/app/__pycache__/base.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/app/__pycache__/pasterapp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/app/__pycache__/pasterapp.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/app/__pycache__/wsgiapp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/app/__pycache__/wsgiapp.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/app/base.py /usr/lib/python3.11/site-packages/gunicorn/app/pasterapp.py /usr/lib/python3.11/site-packages/gunicorn/app/wsgiapp.py /usr/lib/python3.11/site-packages/gunicorn/arbiter.py /usr/lib/python3.11/site-packages/gunicorn/config.py /usr/lib/python3.11/site-packages/gunicorn/debug.py /usr/lib/python3.11/site-packages/gunicorn/errors.py /usr/lib/python3.11/site-packages/gunicorn/glogging.py /usr/lib/python3.11/site-packages/gunicorn/http /usr/lib/python3.11/site-packages/gunicorn/http/__init__.py /usr/lib/python3.11/site-packages/gunicorn/http/__pycache__ /usr/lib/python3.11/site-packages/gunicorn/http/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/http/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/http/__pycache__/body.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/http/__pycache__/body.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/http/__pycache__/errors.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/http/__pycache__/errors.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/http/__pycache__/message.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/http/__pycache__/message.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/http/__pycache__/parser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/http/__pycache__/parser.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/http/__pycache__/unreader.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/http/__pycache__/unreader.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/http/__pycache__/wsgi.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/http/__pycache__/wsgi.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/http/body.py /usr/lib/python3.11/site-packages/gunicorn/http/errors.py /usr/lib/python3.11/site-packages/gunicorn/http/message.py /usr/lib/python3.11/site-packages/gunicorn/http/parser.py /usr/lib/python3.11/site-packages/gunicorn/http/unreader.py /usr/lib/python3.11/site-packages/gunicorn/http/wsgi.py /usr/lib/python3.11/site-packages/gunicorn/instrument /usr/lib/python3.11/site-packages/gunicorn/instrument/__init__.py /usr/lib/python3.11/site-packages/gunicorn/instrument/__pycache__ /usr/lib/python3.11/site-packages/gunicorn/instrument/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/instrument/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/instrument/__pycache__/statsd.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/instrument/__pycache__/statsd.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/instrument/statsd.py /usr/lib/python3.11/site-packages/gunicorn/pidfile.py /usr/lib/python3.11/site-packages/gunicorn/reloader.py /usr/lib/python3.11/site-packages/gunicorn/sock.py /usr/lib/python3.11/site-packages/gunicorn/systemd.py /usr/lib/python3.11/site-packages/gunicorn/util.py /usr/lib/python3.11/site-packages/gunicorn/workers /usr/lib/python3.11/site-packages/gunicorn/workers/__init__.py /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__ /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/base.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/base.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/base_async.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/base_async.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/geventlet.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/geventlet.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/ggevent.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/ggevent.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/gthread.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/gthread.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/gtornado.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/gtornado.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/sync.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/sync.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/workertmp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/__pycache__/workertmp.cpython-311.pyc /usr/lib/python3.11/site-packages/gunicorn/workers/base.py /usr/lib/python3.11/site-packages/gunicorn/workers/base_async.py /usr/lib/python3.11/site-packages/gunicorn/workers/geventlet.py /usr/lib/python3.11/site-packages/gunicorn/workers/ggevent.py /usr/lib/python3.11/site-packages/gunicorn/workers/gthread.py /usr/lib/python3.11/site-packages/gunicorn/workers/gtornado.py /usr/lib/python3.11/site-packages/gunicorn/workers/sync.py /usr/lib/python3.11/site-packages/gunicorn/workers/workertmp.py /usr/share/doc/packages/python311-gunicorn /usr/share/doc/packages/python311-gunicorn/NOTICE /usr/share/doc/packages/python311-gunicorn/README.rst /usr/share/doc/packages/python311-gunicorn/THANKS /usr/share/doc/packages/python311-gunicorn/html /usr/share/doc/packages/python311-gunicorn/html/.buildinfo /usr/share/doc/packages/python311-gunicorn/html/2010-news.html /usr/share/doc/packages/python311-gunicorn/html/2011-news.html /usr/share/doc/packages/python311-gunicorn/html/2012-news.html /usr/share/doc/packages/python311-gunicorn/html/2013-news.html /usr/share/doc/packages/python311-gunicorn/html/2014-news.html /usr/share/doc/packages/python311-gunicorn/html/2015-news.html /usr/share/doc/packages/python311-gunicorn/html/2016-news.html /usr/share/doc/packages/python311-gunicorn/html/2017-news.html /usr/share/doc/packages/python311-gunicorn/html/2018-news.html /usr/share/doc/packages/python311-gunicorn/html/2019-news.html /usr/share/doc/packages/python311-gunicorn/html/2020-news.html /usr/share/doc/packages/python311-gunicorn/html/2021-news.html /usr/share/doc/packages/python311-gunicorn/html/_images /usr/share/doc/packages/python311-gunicorn/html/_images/gunicorn.png /usr/share/doc/packages/python311-gunicorn/html/_sources /usr/share/doc/packages/python311-gunicorn/html/_sources/2010-news.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/2011-news.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/2012-news.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/2013-news.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/2014-news.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/2015-news.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/2016-news.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/2017-news.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/2018-news.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/2019-news.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/2020-news.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/2021-news.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/community.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/configure.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/custom.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/deploy.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/design.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/faq.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/index.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/install.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/instrumentation.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/news.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/run.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/settings.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_sources/signals.rst.txt /usr/share/doc/packages/python311-gunicorn/html/_static /usr/share/doc/packages/python311-gunicorn/html/_static/basic.css /usr/share/doc/packages/python311-gunicorn/html/_static/css /usr/share/doc/packages/python311-gunicorn/html/_static/css/badge_only.css /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/Roboto-Slab-Bold.woff /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/Roboto-Slab-Bold.woff2 /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/Roboto-Slab-Regular.woff /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/Roboto-Slab-Regular.woff2 /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/fontawesome-webfont.eot /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/fontawesome-webfont.svg /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/fontawesome-webfont.ttf /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/fontawesome-webfont.woff /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/fontawesome-webfont.woff2 /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/lato-bold-italic.woff /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/lato-bold-italic.woff2 /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/lato-bold.woff /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/lato-bold.woff2 /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/lato-normal-italic.woff /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/lato-normal-italic.woff2 /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/lato-normal.woff /usr/share/doc/packages/python311-gunicorn/html/_static/css/fonts/lato-normal.woff2 /usr/share/doc/packages/python311-gunicorn/html/_static/css/theme.css /usr/share/doc/packages/python311-gunicorn/html/_static/doctools.js /usr/share/doc/packages/python311-gunicorn/html/_static/documentation_options.js /usr/share/doc/packages/python311-gunicorn/html/_static/file.png /usr/share/doc/packages/python311-gunicorn/html/_static/gunicorn.png /usr/share/doc/packages/python311-gunicorn/html/_static/jquery-3.4.1.js /usr/share/doc/packages/python311-gunicorn/html/_static/jquery.js /usr/share/doc/packages/python311-gunicorn/html/_static/js /usr/share/doc/packages/python311-gunicorn/html/_static/js/badge_only.js /usr/share/doc/packages/python311-gunicorn/html/_static/js/html5shiv-printshiv.min.js /usr/share/doc/packages/python311-gunicorn/html/_static/js/html5shiv.min.js /usr/share/doc/packages/python311-gunicorn/html/_static/js/theme.js /usr/share/doc/packages/python311-gunicorn/html/_static/language_data.js /usr/share/doc/packages/python311-gunicorn/html/_static/minus.png /usr/share/doc/packages/python311-gunicorn/html/_static/plus.png /usr/share/doc/packages/python311-gunicorn/html/_static/pygments.css /usr/share/doc/packages/python311-gunicorn/html/_static/searchtools.js /usr/share/doc/packages/python311-gunicorn/html/_static/underscore-1.3.1.js /usr/share/doc/packages/python311-gunicorn/html/_static/underscore.js /usr/share/doc/packages/python311-gunicorn/html/community.html /usr/share/doc/packages/python311-gunicorn/html/configure.html /usr/share/doc/packages/python311-gunicorn/html/custom.html /usr/share/doc/packages/python311-gunicorn/html/deploy.html /usr/share/doc/packages/python311-gunicorn/html/design.html /usr/share/doc/packages/python311-gunicorn/html/faq.html /usr/share/doc/packages/python311-gunicorn/html/genindex.html /usr/share/doc/packages/python311-gunicorn/html/index.html /usr/share/doc/packages/python311-gunicorn/html/install.html /usr/share/doc/packages/python311-gunicorn/html/instrumentation.html /usr/share/doc/packages/python311-gunicorn/html/news.html /usr/share/doc/packages/python311-gunicorn/html/objects.inv /usr/share/doc/packages/python311-gunicorn/html/run.html /usr/share/doc/packages/python311-gunicorn/html/search.html /usr/share/doc/packages/python311-gunicorn/html/searchindex.js /usr/share/doc/packages/python311-gunicorn/html/settings.html /usr/share/doc/packages/python311-gunicorn/html/signals.html /usr/share/licenses/python311-gunicorn /usr/share/licenses/python311-gunicorn/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Mon Mar 9 16:38:47 2026