summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-09-15 21:14:54 -0400
committerChris McDonough <chrism@plope.com>2012-09-15 21:14:54 -0400
commitd246597b50226456fd350d44be8af0cf6831cd15 (patch)
tree78acdb36f74fb9a686f02aedaf0c5903ce9a96b6 /CHANGES.txt
parent97150cc540bad56f8ff7760616d75db8894da73b (diff)
downloadpyramid-d246597b50226456fd350d44be8af0cf6831cd15.tar.gz
pyramid-d246597b50226456fd350d44be8af0cf6831cd15.tar.bz2
pyramid-d246597b50226456fd350d44be8af0cf6831cd15.zip
reclassify bug as feature
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index da2399d9b..851941ff6 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -33,11 +33,6 @@ Bug Fixes
differ in the case ('text/html' vs. 'text/HTML') will now raise an error.
https://github.com/Pylons/pyramid/pull/620
-- Configurator.add_directive now accepts arbitrary callables like partials or
- objects implementing ``__call__`` which dont have ``__name__`` and
- ``__doc__`` attributes. See https://github.com/Pylons/pyramid/issues/621
- and https://github.com/Pylons/pyramid/pull/647.
-
- Forward-port from 1.3 branch: when registering multiple views with an
``accept`` predicate in a Pyramid application runing under Python 3, you
might have received a ``TypeError: unorderable types: function() <
@@ -46,6 +41,11 @@ Bug Fixes
Features
--------
+- Configurator.add_directive now accepts arbitrary callables like partials or
+ objects implementing ``__call__`` which dont have ``__name__`` and
+ ``__doc__`` attributes. See https://github.com/Pylons/pyramid/issues/621
+ and https://github.com/Pylons/pyramid/pull/647.
+
- Third-party custom view, route, and subscriber predicates can now be added
for use by view authors via
``pyramid.config.Configurator.add_view_predicate``,