mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-18 13:20:59 +00:00
The __metaclass__ syntax is a Python-2-ism. It was replaced with
class _Logger (object, metaclass=abc.ABCMeta):
in Python 3. And then Python 3.4 introduced abc.ABC which is an empty
class that has ABCMeta as the metaclass, making it simpler to define
abstract base classes.
|
||
|---|---|---|
| .. | ||
| __init__.py | ||
| blacklist.py | ||
| csvlog.py | ||
| customxml.py | ||
| dot.py | ||
| gml.py | ||
| graph.py | ||
| gxml.py | ||
| html.py | ||
| none.py | ||
| sitemapxml.py | ||
| sql.py | ||
| text.py | ||
| xmllog.py | ||