What is the naming convention for a variable referencing a class in Python?
class MyClass(object): pass # which one is correct? reference_to_class = MyClass
On module level the second:
ReferenceToClass = MyClass
As a function argument, the first:
reference_to_class = MyClass