eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsEnums.py

Sat, 22 May 2021 19:58:24 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 22 May 2021 19:58:24 +0200
branch
eric7
changeset 8358
144a6b854f70
parent 8312
800c432b34c8
child 8773
3dd81b827455
permissions
-rw-r--r--

Sorted the eric specific extensions into packages named like the corresponding PyQt packages (i.e. EricCore,EricGui and EricWidgets).

# -*- coding: utf-8 -*-

# Copyright (c) 2021 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module implementing some enums for function type annotations.
"""

#
# adapted from flake8-annotations v2.6.2
#

import enum


class FunctionType(enum.Enum):
    """
    Class representing the various function types.
    """
    PUBLIC = enum.auto()
    PROTECTED = enum.auto()      # Leading single underscore
    PRIVATE = enum.auto()        # Leading double underscore
    SPECIAL = enum.auto()        # Leading & trailing double underscore


class ClassDecoratorType(enum.Enum):
    """
    Class representing the various class method decorators.
    """
    CLASSMETHOD = enum.auto()
    STATICMETHOD = enum.auto()


class AnnotationType(enum.Enum):
    """
    Class representing the kind of missing type annotation.
    """
    POSONLYARGS = enum.auto()
    ARGS = enum.auto()
    VARARG = enum.auto()
    KWONLYARGS = enum.auto()
    KWARG = enum.auto()
    RETURN = enum.auto()

eric ide

mercurial