module documentation

Undocumented

Constant DEFAULT_NAMING_STYLES Undocumented
Constant KNOWN_NAME_TYPES Undocumented
Constant NAMING_STYLES Undocumented
Function _create_naming_options Undocumented
DEFAULT_NAMING_STYLES: dict[str, str] = (source)

Undocumented

Value
{'module': 'snake_case',
 'const': 'UPPER_CASE',
 'class': 'PascalCase',
 'function': 'snake_case',
 'method': 'snake_case',
 'attr': 'snake_case',
 'argument': 'snake_case',
...
KNOWN_NAME_TYPES = (source)

Undocumented

Value
set([*KNOWN_NAME_TYPES_WITH_STYLE, 'typevar', 'typealias'])
NAMING_STYLES = (source)

Undocumented

Value
{'snake_case': SnakeCaseStyle,
 'camelCase': CamelCaseStyle,
 'PascalCase': PascalCaseStyle,
 'UPPER_CASE': UpperCaseStyle,
 'any': AnyStyle}
def _create_naming_options() -> Options: (source)

Undocumented