diff options
| -rw-r--r-- | CHANGES.txt | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 8295a98c9..4c9ba4863 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -247,7 +247,7 @@ Features The above example will ensure that the view is called if the request method is not POST (at least if no other view is more specific). - The :class:`pyramid.config.not_` class can be used against any value that is + The ``pyramid.config.not_`` class can be used against any value that is a predicate value passed in any of these contexts: - ``pyramid.config.Configurator.add_view`` @@ -316,9 +316,7 @@ Features In the past, only the most specific type containing views would be checked and if no matching view could be found then a PredicateMismatch would be raised. Now predicate mismatches don't hide valid views registered on - super-types. Here's an example that now works: - - .. code-block:: python + super-types. Here's an example that now works:: class IResource(Interface): |
