We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe68c06 commit 68b8d1eCopy full SHA for 68b8d1e
docs/glossary.md
@@ -104,6 +104,10 @@ slotted classes
104
105
This situation can occur if you define an `attrs.field(init=False)` and don't set the attribute by hand before pickling.
106
107
+ - You can't call a bare `super()` in a decorated method like `contextlib.contextmanager`.
108
+ Use `super(YourClass, self)` until we get a way to work around this from Python.
109
+ See also [#1038](https://github.com/python-attrs/attrs/issues/1038) for more details.
110
+
111
112
field
113
As the project name suggests, *attrs* is all about attributes.
0 commit comments