We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29912d7 commit dc7fd8bCopy full SHA for dc7fd8b
CHANGELOG.rst
@@ -148,7 +148,7 @@ Features
148
--------
149
150
- `#282 <https://github.com/pytest-dev/pluggy/issues/282>`_: When registering a hookimpl which is declared as ``hookwrapper=True`` but whose
151
- function is not a generator function, a ``PluggyValidationError`` exception is
+ function is not a generator function, a :class:`~pluggy.PluginValidationError` exception is
152
now raised.
153
154
Previously this problem would cause an error only later, when calling the hook.
@@ -158,7 +158,7 @@ Features
158
159
.. code-block:: python
160
161
- def my_hook_real_implementation(arg):
+ def my_hook_implementation(arg):
162
print("before")
163
yield
164
print("after")
0 commit comments