Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/gunicorn/__init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.3.1, created at 2023-09-25 06:32 +0000

1# -*- coding: utf-8 - 

2# 

3# This file is part of gunicorn released under the MIT license. 

4# See the NOTICE for more information. 

5 

6version_info = (21, 2, 0) 

7__version__ = ".".join([str(v) for v in version_info]) 

8SERVER = "gunicorn" 

9SERVER_SOFTWARE = "%s/%s" % (SERVER, __version__)