File tree 4 files changed +23
-4
lines changed
4 files changed +23
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ Release Notes
5
5
.. toctree ::
6
6
:maxdepth: 2
7
7
8
+ release-notes/version-4.4.20
8
9
release-notes/version-4.4.19
9
10
release-notes/version-4.4.18
10
11
release-notes/version-4.4.17
Original file line number Diff line number Diff line change
1
+ ==============
2
+ Version 4.4.20
3
+ ==============
4
+
5
+ Version 4.4.20 of mod_wsgi can be obtained from:
6
+
7
+ https://codeload.github.com/GrahamDumpleton/mod_wsgi/tar.gz/4.4.20
8
+
9
+ For details on the availability of Windows binaries see:
10
+
11
+ https://github.com/GrahamDumpleton/mod_wsgi/tree/master/win32
12
+
13
+ Bugs Fixed
14
+ ----------
15
+
16
+ 1. Post mortem debugger would fail if the exception was raised during
17
+ yielding of items from a WSGI application, or inside of any ``close() ``
18
+ callable of an iterator returned from the WSGI application.
Original file line number Diff line number Diff line change @@ -1117,15 +1117,15 @@ def __iter__(self):
1117
1117
for item in self .generator :
1118
1118
yield item
1119
1119
except Exception :
1120
- self .debug_exception ()
1120
+ self .run_post_mortem ()
1121
1121
raise
1122
1122
1123
1123
def close (self ):
1124
1124
try :
1125
1125
if hasattr (self .generator , 'close' ):
1126
1126
return self .generator .close ()
1127
1127
except Exception :
1128
- self .debug_exception ()
1128
+ self .run_post_mortem ()
1129
1129
raise
1130
1130
1131
1131
class RequestRecorder (object ):
Original file line number Diff line number Diff line change 25
25
26
26
#define MOD_WSGI_MAJORVERSION_NUMBER 4
27
27
#define MOD_WSGI_MINORVERSION_NUMBER 4
28
- #define MOD_WSGI_MICROVERSION_NUMBER 19
29
- #define MOD_WSGI_VERSION_STRING "4.4.19 "
28
+ #define MOD_WSGI_MICROVERSION_NUMBER 20
29
+ #define MOD_WSGI_VERSION_STRING "4.4.20 "
30
30
31
31
/* ------------------------------------------------------------------------- */
32
32
You can’t perform that action at this time.
0 commit comments