Skip to content

properties

This module simply defines regular expressions and their associated predicates.

NAME_CLASS_PRIVATE: Tuple[str, Callable[[str], bool]] ¤

Applicable property: class-private.

NAME_PRIVATE: Tuple[str, Callable[[str], bool]] ¤

Applicable property: private.

NAME_SPECIAL: Tuple[str, Callable[[str], bool]] ¤

Applicable property: special.

RE_CLASS_PRIVATE: Pattern ¤

Regular expression to match __class_private names.

RE_PRIVATE: Pattern ¤

Regular expression to match _private names.

RE_SPECIAL: Pattern ¤

Regular expression to match __special__ names.

Back to top