Chris McDonough
2011-12-15 3ee1022068481dea058064cf28c4bc114ca6bd51
merge goodwill's changes from master
3 files modified
13 ■■■■■ changed files
CONTRIBUTORS.txt 2 ●●●●● patch | view | raw | blame | history
docs/conf.py 1 ●●●● patch | view | raw | blame | history
docs/whatsnew-1.3.rst 10 ●●●●● patch | view | raw | blame | history
CONTRIBUTORS.txt
@@ -158,3 +158,5 @@
- Reed O'Brien, 2011/11/07
- Klee Dienes, 2011/10/30
- Michael Ryabushin, 2011/12/14
docs/conf.py
@@ -81,6 +81,7 @@
#
# The short X.Y version.
version = '1.3a2'
# The full version, including alpha/beta/rc tags.
release = version
docs/whatsnew-1.3.rst
@@ -101,6 +101,16 @@
``pserve`` -invoked application.  **The wsgiref server is not a production
quality server.** See :ref:`alternate_wsgi_server` for more information.
.. warning::
   Previously, paste.httpserver "helped" by converting header values that weren't
   strings to strings. The wsgiref server, on the other hand implements the spec
   more fully. This specifically may affect you if you are modifying headers on
   your response. The following error might be an indicator of this problem:
   **AssertionError: Header values must be strings, please check the type of
   the header being returned.** A common case would be returning unicode headers
   instead of string headers.
A new :mod:`pyramid.compat` module was added which provides Python 2/3
straddling support for Pyramid add-ons and development environments.