• + 0 comments
    from operator import methodcaller
    
    class List(list):
        def print(self):
            print(self)
    	
    (...)