diff options
| author | Michael Merickel <michael@merickel.org> | 2016-01-16 16:34:29 -0600 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2016-01-16 16:34:29 -0600 |
| commit | 0f451b89f7981234614c8437d002bee48d788a51 (patch) | |
| tree | b29dc40aad58685e71bf98ce7ec4a45e24ade75f /docs/whatsnew-1.6.rst | |
| parent | 724f456d4de412fd70b9f068c71e7ea46bbf1ae9 (diff) | |
| download | pyramid-0f451b89f7981234614c8437d002bee48d788a51.tar.gz pyramid-0f451b89f7981234614c8437d002bee48d788a51.tar.bz2 pyramid-0f451b89f7981234614c8437d002bee48d788a51.zip | |
update whatsnew
fixes #2211
Diffstat (limited to 'docs/whatsnew-1.6.rst')
| -rw-r--r-- | docs/whatsnew-1.6.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/whatsnew-1.6.rst b/docs/whatsnew-1.6.rst index bdfcf34ab..f5c307b5d 100644 --- a/docs/whatsnew-1.6.rst +++ b/docs/whatsnew-1.6.rst @@ -41,6 +41,18 @@ Backwards Incompatibilities This does not change the API of a renderer. See https://github.com/Pylons/pyramid/pull/1563 +- In an effort to combat a common issue it is now a + :class:`~pyramid.exceptions.ConfigurationError` to register a view + callable that is actually an unbound method when using the default view + mapper. As unbound methods do not exist in PY3+ possible errors are detected + by checking if the first parameter is named ``self``. For example, + `config.add_view(ViewClass.some_method, ...)` should actually be + `config.add_view(ViewClass, attr='some_method)'`. This was always an issue + in Pyramid on PY2 but the backward incompatibility is on PY3+ where you may + not use a function with the first parameter named ``self``. In this case + it looks too much like a common error and the exception will be raised. + See https://github.com/Pylons/pyramid/pull/1498 + Feature Additions ----------------- |
