Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created December 7, 2018 12:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/19ec64f8bce3bf941def142d79f40523 to your computer and use it in GitHub Desktop.
Save Fhernd/19ec64f8bce3bf941def142d79f40523 to your computer and use it in GitHub Desktop.
Mejora instanciación de objetos en Python.
class Fecha:
__slots__ = ['aghnio', 'mes', 'dia']
def __init__(self, aghnio, mes, dia):
self.aghnio = aghnio
self.mes = mes
self.dia = dia
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment