I read Naming Conventions in PEP 8 – Style Guide for Python Code.
And, it says:
Function and Variable Names
......
mixedCase is allowed only in contexts where that’s already the prevailing style (e.g. threading.py), to retain backwards compatibility.
Next, I read threading — Thread-based parallelism.
And, it says:
Note: In the Python 2.x series, this module contained camelCase names for some methods and functions. These are deprecated as of Python 3.10, but they are still supported for compatibility with Python 2.5 and lower.
So, is camelCase basically deprecated or not allowed to use in Python?