From c612dec9253f1f61fec24bbdde97085b155e4b4b Mon Sep 17 00:00:00 2001 From: Rnhmjoj Date: Mon, 15 Jul 2013 15:19:30 +0200 Subject: [PATCH] Correzione stilistica Linee con meno di 80 caratteri. --- malbolge/macchina.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/malbolge/macchina.py b/malbolge/macchina.py index 1a14625..f36c78c 100644 --- a/malbolge/macchina.py +++ b/malbolge/macchina.py @@ -90,5 +90,8 @@ class Macchina: def __traduci(self): #Traduce - trascrizione = str.maketrans('!"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~', '5z]&gqtyfr$(we4{WP)H-Zn,[%\\3dL+Q;>U!pJS72FhOA1CB6v^=I_0/8|jsb9m<.TVac`uY*MK\'X~xDl}REokN:#?G"i@') - self.c[self.puntatore_c.decimale] = trinord(str.translate(trinchr(self.c[self.puntatore_c.decimale]), trascrizione)) \ No newline at end of file + trascrizione = str.maketrans( + '!"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~', + '5z]&gqtyfr$(we4{WP)H-Zn,[%\\3dL+Q;>U!pJS72FhOA1CB6v^=I_0/8|jsb9m<.TVac`uY*MK\'X~xDl}REokN:#?G"i@' + ) + self.c[self.puntatore_c.decimale] = trinord(str.translate(trinchr(self.c[self.puntatore_c.decimale]), trascrizione))