This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
multipub/.pyenv/lib/python3.7/site-packages/pylint/test/functional/namePresetCamelCase.py
2019-02-09 02:45:25 -06:00

23 lines
538 B
Python

# pylint: disable=missing-docstring,too-few-public-methods
__version__ = "1.0"
SOME_CONSTANT = 42 # [invalid-name]
def sayHello(someArgument):
return [someArgument * someValue for someValue in range(10)]
class MyClass: # [invalid-name]
def __init__(self, argX):
self._mySecretX = argX
@property
def myPublicX(self):
return self._mySecretX * 2
def __eq__(self, other):
return isinstance(other, MyClass) and self.myPublicX == other.myPublicX
def say_hello(): # [invalid-name]
pass