diff options
author | Chris McDonough <chrism@plope.com> | 2013-11-21 06:52:02 -0500 |
---|---|---|
committer | Chris McDonough <chrism@plope.com> | 2013-11-21 06:52:02 -0500 |
commit | 34aa289c34e54f830c8434ff3ca237103b4ae651 (patch) | |
tree | 86c6dbf4f9a8f64d1df5b6519cfbee8a262d9229 /CHANGES.txt | |
parent | 992dd544e819e4ccf400a0fe4ac6d92b5204fd09 (diff) | |
download | waitress-34aa289c34e54f830c8434ff3ca237103b4ae651.tar.gz |
- Fix some cases where the creation of extremely large output buffers (greater
than 2GB, suspected to be buffers added via ``wsgi.file_wrapper``) might
cause an OverflowError on Python 2. See
https://github.com/Pylons/waitress/issues/47.
See #47
Diffstat (limited to 'CHANGES.txt')
-rw-r--r-- | CHANGES.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 8718f1b..cb2c7b9 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,11 @@ +Next release +------------ + +- Fix some cases where the creation of extremely large output buffers (greater + than 2GB, suspected to be buffers added via ``wsgi.file_wrapper``) might + cause an OverflowError on Python 2. See + https://github.com/Pylons/waitress/issues/47. + 0.8.7 (2013-08-29) ------------------ |