mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
14 lines
233 B
HTML
14 lines
233 B
HTML
<html>
|
|
<body>
|
|
<p>Reports invalid usages of a class with <code>__slots__</code> definitions.</p>
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
class Foo:
|
|
__slots__ = ['foo', 'bar']
|
|
|
|
|
|
foo = Foo()
|
|
foo.baz = 'spam'
|
|
</code></pre>
|
|
</body>
|
|
</html> |