summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-05-21 18:30:21 -0400
committerChris McDonough <chrism@plope.com>2013-05-21 18:30:21 -0400
commitd4495efddce30cf2eef771ac28e2d90b86985d39 (patch)
tree3a0cec84491748ea55cc278d4bc58900f2acc932 /CHANGES.txt
parent1166fecd2ee051029ecbcccbaa3e3daae3526cf8 (diff)
downloadpyramid-d4495efddce30cf2eef771ac28e2d90b86985d39.tar.gz
pyramid-d4495efddce30cf2eef771ac28e2d90b86985d39.tar.bz2
pyramid-d4495efddce30cf2eef771ac28e2d90b86985d39.zip
this is actually a bugfix
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt12
1 files changed, 7 insertions, 5 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index ceaeb3519..a471addce 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -4,11 +4,6 @@ next release
Features
--------
-- Make the ``pyramid.config.assets.PackageOverrides`` object implement the
- API for ``__loader__`` objects specified in PEP 302. Proxies to the
- ``__loader__`` set by the importer, if present; otherwise, raises
- ``NotImplementedError``.
-
- ``ACLAuthorizationPolicy`` supports ``__acl__`` as a callable. This
removes the ambiguity between the potential ``AttributeError`` that would
be raised on the ``context`` when the property was not defined and the
@@ -37,6 +32,13 @@ Features
Bug Fixes
---------
+- Make the ``pyramid.config.assets.PackageOverrides`` object implement the API
+ for ``__loader__`` objects specified in PEP 302. Proxies to the
+ ``__loader__`` set by the importer, if present; otherwise, raises
+ ``NotImplementedError``. This makes Pyramid static view overrides work
+ properly under Python 3.3 (previously they would not). See
+ https://github.com/Pylons/pyramid/pull/1015 for more information.
+
- ``mako_templating``: added defensive workaround for non-importability of
``mako`` due to upstream ``markupsafe`` dropping Python 3.2 support. Mako
templating will no longer work under the combination of MarkupSafe 0.17 and