-.-- .- -.-- --..-- -. --- .-- -- --- .-. ... . -..-. ..- -. -- --- .-.

... .   ... ..- .--. .--. --- .-. - ...   .--. ..- -. -.-. - ..- .- - .. ---
-. .-.-.-
This commit is contained in:
James Vega 2004-02-20 22:45:27 +00:00
parent 7859f16aa6
commit a76036722e
1 changed files with 10 additions and 0 deletions

View File

@ -278,6 +278,16 @@ class Filter(callbacks.Privmsg):
"7" : "--...",
"8" : "---..",
"9" : "----.",
"." : ".-.-.-",
"," : "--..--",
":" : "---...",
"?" : "..--..",
"'" : ".----.",
"-" : "-....-",
"/" : "-..-.",
'"' : ".-..-.",
"@" : ".--.-.",
"=" : "-...-"
}
_revcode = dict([(y, x) for (x, y) in _code.items()])
_unmorsere = re.compile('([.-]+)')