File: version-4.5.14.rst

package info (click to toggle)
mod-wsgi 5.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,824 kB
  • sloc: ansic: 15,512; python: 3,697; makefile: 219; sh: 107
file content (26 lines) | stat: -rw-r--r-- 975 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
==============
Version 4.5.14
==============

Version 4.5.14 of mod_wsgi can be obtained from:

  https://codeload.github.com/GrahamDumpleton/mod_wsgi/tar.gz/4.5.14

Bugs Fixed
----------

* Using the ``--url-alias`` option to the ``runmodwsgi`` management
  command when integrating ``mod_wsgi-express`` with Django could fail
  with Python 3. This is because the type of the items passed in an
  option list could be tuple or list depending on Python version. It
  was necessary to add items with same type else sorting would break.

New Features
------------

* Added a ``name`` attribute to the log object used in place of
  ``sys.stdout`` and ``sys.stderr``, and which is also used for
  ``wsgi.errors`` in the per request ``environ`` dictionary. This is
  because although the ``name`` attribute is not required to exist, one can
  find code out there that assumes it always does exist for file like
  objects. Adding the attribute ensures that such code doesn't fail.