summaryrefslogtreecommitdiff
path: root/docs/whatsnew-1.3.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-02-14 04:13:58 -0500
committerChris McDonough <chrism@plope.com>2012-02-14 04:13:58 -0500
commit9ed1e0ba957c36f6ae29c25ffeaa6c2c02f716a9 (patch)
treed5df37904835cfaac437acaf8d886fdb7c2072ce /docs/whatsnew-1.3.rst
parentc08f7656c1427cf5ebacf18356a5f55bd20ecfbd (diff)
parentaf24f7d5f69a74f9887ca6df622ef67c69075988 (diff)
downloadpyramid-9ed1e0ba957c36f6ae29c25ffeaa6c2c02f716a9.tar.gz
pyramid-9ed1e0ba957c36f6ae29c25ffeaa6c2c02f716a9.tar.bz2
pyramid-9ed1e0ba957c36f6ae29c25ffeaa6c2c02f716a9.zip
Merge branch 'wwitzel3-ww/415'
Diffstat (limited to 'docs/whatsnew-1.3.rst')
-rw-r--r--docs/whatsnew-1.3.rst15
1 files changed, 14 insertions, 1 deletions
diff --git a/docs/whatsnew-1.3.rst b/docs/whatsnew-1.3.rst
index ed7024f62..b6cfde039 100644
--- a/docs/whatsnew-1.3.rst
+++ b/docs/whatsnew-1.3.rst
@@ -15,7 +15,9 @@ The major feature additions in Pyramid 1.3 follow.
Python 3 Compatibility
~~~~~~~~~~~~~~~~~~~~~~
-Pyramid is now Python 3 compatible. Python 3.2 or better is required.
+In addition to running on Python 2 (version 2.6 or 2.7 required), Pyramid is
+now Python 3 compatible. For Python 3 compatibility, Python 3.2 or better
+is required.
.. warning::
@@ -250,6 +252,13 @@ Minor Feature Additions
http://www.python.org/dev/peps/pep-0333/#optional-platform-specific-file-handling)
when one is provided by the web server.
+- The :meth:`pyramid.config.Configurator.scan` method can be passed an
+ ``ignore`` argument, which can be a string, a callable, or a list
+ consisting of strings and/or callables. This feature allows submodules,
+ subpackages, and global objects from being scanned. See
+ http://readthedocs.org/docs/venusian/en/latest/#ignore-scan-argument for
+ more information about how to use the ``ignore`` argument to ``scan``.
+
Backwards Incompatibilities
---------------------------
@@ -315,6 +324,10 @@ Backwards Incompatibilities
(indeterminate value based on Python 3 vs. Python 2). This has to be done
to normalize matching on Python 2 and Python 3.
+- The ``match_param`` view predicate no longer accepts a dict. This will have
+ no negative affect because the implementation was broken for dict-based
+ arguments.
+
Documentation Enhancements
--------------------------