mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
17 lines
432 B
HTML
17 lines
432 B
HTML
<html>
|
|
<body>
|
|
<p>Reports <a href="https://docs.python.org/2/reference/datamodel.html#new-style-and-classic-classes">
|
|
classic style classes</a> usage. This inspection applies only to Python 2.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
class A:
|
|
pass
|
|
</code></pre>
|
|
<p>With quick-fixes provided by the IDE, this code fragment changes to:</p>
|
|
<pre><code>
|
|
class A(object):
|
|
def __init__(self):
|
|
pass
|
|
</code></pre>
|
|
</body>
|
|
</html> |