Refs #23919 -- Stopped inheriting from object to define new style classes.

Tests and docs complement to cecc079168.
This commit is contained in:
Mariusz Felisiak 2017-06-26 16:30:31 +02:00 committed by Tim Graham
parent fba0eaa5d6
commit 081e787160
18 changed files with 24 additions and 24 deletions

View file

@ -151,7 +151,7 @@ Imports
CONSTANT = 'foo'
class Example(object):
class Example:
# ...
* Use convenience imports whenever available. For example, do this::