summaryrefslogtreecommitdiff
path: root/docs/release-notes
diff options
context:
space:
mode:
authorGraham Dumpleton <Graham.Dumpleton@gmail.com>2018-03-05 21:51:44 +1100
committerGraham Dumpleton <Graham.Dumpleton@gmail.com>2018-03-05 21:51:44 +1100
commitf897c69f597d084ebed9d0be3cbdbf5a6f9f12aa (patch)
tree0b87dcdc36fb0f0b128c08f6430c5bfc9b532b80 /docs/release-notes
parentdc8190ad240a831cbd8069dbc08d0dce52a7f10f (diff)
downloadmod_wsgi-f897c69f597d084ebed9d0be3cbdbf5a6f9f12aa.tar.gz
Use alternative to PyFrame_GetLineNumber() so still compiles with Python 2.6 on older RHEL versions.
Diffstat (limited to 'docs/release-notes')
-rw-r--r--docs/release-notes/version-4.6.3.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/release-notes/version-4.6.3.rst b/docs/release-notes/version-4.6.3.rst
index cd8858b..97cf730 100644
--- a/docs/release-notes/version-4.6.3.rst
+++ b/docs/release-notes/version-4.6.3.rst
@@ -5,3 +5,13 @@ Version 4.6.3
Version 4.6.3 of mod_wsgi can be obtained from:
https://codeload.github.com/GrahamDumpleton/mod_wsgi/tar.gz/4.6.3
+
+Bugs Fixed
+----------
+
+* When compiled for Python 2.6, when run mod_wsgi would fail to load into
+ Apache due to misisng symbol ``PyFrame_GetLineNumber``. This was only
+ introduced in Python 2.7. Use alternate way to get line number which
+ still yields correct answer. This issue was introduced in mod_wsgi
+ version 4.6.0 in fix to have correct line numbers generated for stack
+ traces on shutdown due to request timeout.