diff options
author | Xtreak <tir.karthi@gmail.com> | 2019-06-02 23:12:33 (GMT) |
---|---|---|
committer | Petr Viktorin <encukou@gmail.com> | 2019-06-02 23:12:33 (GMT) |
commit | 0d70227e419ab78c44d81b4ea6ae8aaf769470e6 (patch) | |
tree | 7fcafd5e2f1291c61989b119eff03ce7113bc928 /Lib/lib2to3 | |
parent | e584cbff1ea78e700cf9943d50467e3b58301ccc (diff) | |
download | cpython-0d70227e419ab78c44d81b4ea6ae8aaf769470e6.zip cpython-0d70227e419ab78c44d81b4ea6ae8aaf769470e6.tar.gz cpython-0d70227e419ab78c44d81b4ea6ae8aaf769470e6.tar.bz2 |
Fix typos in docs and docstrings (GH-13745)
Diffstat (limited to 'Lib/lib2to3')
-rw-r--r-- | Lib/lib2to3/fixes/fix_metaclass.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/fixes/fix_metaclass.py b/Lib/lib2to3/fixes/fix_metaclass.py index 8e34463..d1cd10d 100644 --- a/Lib/lib2to3/fixes/fix_metaclass.py +++ b/Lib/lib2to3/fixes/fix_metaclass.py @@ -1,6 +1,6 @@ """Fixer for __metaclass__ = X -> (metaclass=X) methods. - The various forms of classef (inherits nothing, inherits once, inherints + The various forms of classef (inherits nothing, inherits once, inherits many) don't parse the same in the CST so we look at ALL classes for a __metaclass__ and if we find one normalize the inherits to all be an arglist. |