Correzione PEP8

This commit is contained in:
Rnhmjoj 2013-08-25 19:31:57 +02:00
parent c344dfa364
commit a65f02b198
2 changed files with 35 additions and 31 deletions

1
666.py
View File

@ -8,6 +8,7 @@ istruzioni = [
" * input: file o codice da eseguire." " * input: file o codice da eseguire."
] ]
def utilizzo(): def utilizzo():
print(*istruzioni, sep="\n") print(*istruzioni, sep="\n")
exit(1) exit(1)

View File

@ -1,5 +1,6 @@
from .trinario import * from .trinario import *
class Macchina: class Macchina:
def esegui(self, programma): def esegui(self, programma):
@ -35,7 +36,9 @@ class Macchina:
for indice, word in enumerate(programma): for indice, word in enumerate(programma):
if word not in ("\n", " "): if word not in ("\n", " "):
if trinord(word) not in range(32, 127): if trinord(word) not in range(32, 127):
raise SyntaxError("Carattere non consentito nel programma: '%c' a %d." % (word, indice)) raise SyntaxError("Carattere non consentito nel programma:\
'%c' a %d." % (word, indice)
)
else: else:
self.c[indice] = trinord(word) self.c[indice] = trinord(word)