Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class ControlInstanciacion(type):
- def __call__(self, *args, **kwargs):
- raise TypeError("Clase no instanciable")
- class Validador(metaclass=ControlInstanciacion):
- def validar_email():
- pass
- def validar_telefono():
- pass
- validador = Validador()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement