a8dc940b73
* Detect unused function and method arguments. * Detect unused *args and **kwargs parameters. * Change license from GPL to MIT.
73 lines
2.3 KiB
Python
73 lines
2.3 KiB
Python
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
|
|
|
|
# Copyright 2016 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
|
|
#
|
|
# This file is part of qutebrowser.
|
|
#
|
|
# qutebrowser is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# qutebrowser is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# pylint: disable=unused-import,bad-mcs-method-argument
|
|
|
|
"""Wrapper for Python 3.5's typing module.
|
|
|
|
This wrapper is needed as both Python 3.5 and typing for PyPI isn't commonly
|
|
packaged yet. As we don't actually need anything from the typing module at
|
|
runtime, we instead mock the typing classes (using objects to make things
|
|
easier) so the typing module isn't a hard dependency.
|
|
"""
|
|
|
|
# Those are defined here to make them testable easily
|
|
|
|
|
|
class FakeTypingMeta(type):
|
|
|
|
"""Fake typing metaclass like typing.TypingMeta."""
|
|
|
|
def __init__(self, *args, # pylint: disable=super-init-not-called
|
|
**_kwds):
|
|
pass
|
|
|
|
def __subclasscheck__(self, cls):
|
|
"""We implement this for qutebrowser.commands.command to work."""
|
|
return isinstance(cls, FakeTypingMeta)
|
|
|
|
|
|
class FakeUnionMeta(FakeTypingMeta):
|
|
|
|
"""Fake union metaclass metaclass like typing.UnionMeta."""
|
|
|
|
def __new__(cls, name, bases, namespace, parameters=None):
|
|
if parameters is None:
|
|
return super().__new__(cls, name, bases, namespace)
|
|
self = super().__new__(cls, name, bases, {})
|
|
self.__union_params__ = tuple(parameters)
|
|
return self
|
|
|
|
def __getitem__(self, parameters):
|
|
return self.__class__(self.__name__, self.__bases__,
|
|
dict(self.__dict__), parameters=parameters)
|
|
|
|
|
|
class FakeUnion(metaclass=FakeUnionMeta):
|
|
|
|
"""Fake Union type like typing.Union."""
|
|
|
|
__union_params__ = None
|
|
|
|
|
|
try:
|
|
from typing import Union
|
|
except ImportError: # pragma: no cover
|
|
Union = FakeUnion
|