Maybe I have the wrong impression, but wouldn't the parent class of a class object be a class?
If so, why didn't the authors of Python follow good style convention and capitalize the object class to Object to denote it as a class object? Is it a class at all?
            Asked
            
        
        
            Active
            
        
            Viewed 126 times
        
    2
            
            
        1 Answers
9
            It follows the convention of built-in types (str, int, float, complex, file, type, etc.) not having the initial letter capitalized.
 
    
    
        Ignacio Vazquez-Abrams
        
- 776,304
- 153
- 1,341
- 1,358
- 
                    Hadn't thought of that. Not all objects are created equal. – yurisich May 16 '12 at 03:00
 
    