Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. class ControlInstanciacion(type):
  2.     def __call__(self, *args, **kwargs):
  3.         raise TypeError("Clase no instanciable")
  4.        
  5. class Validador(metaclass=ControlInstanciacion):
  6.     def validar_email():
  7.         pass
  8.        
  9.     def validar_telefono():
  10.         pass
  11.        
  12. validador = Validador()