Skip to content

Commit ba7c3c2

Browse files
committed
Fixed #13
1 parent 575eb6e commit ba7c3c2

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/codext/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.15.10
1+
1.15.11

src/codext/binary/baudot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
# Russian MTK-2 alphabet (source: https://fr.qwe.wiki/wiki/Baudot_code)
103103
MTK2 = [
104104
"11111", "11011",
105-
"\x00Е\n\xff СИУ\r\xffРЙНФЦКТЗЛВХЫПЯОБГ\xffМЬЖ\xff",
105+
"\x00Е\nA СИУ\r\xffРЙНФЦКТЗЛВХЫПЯОБГ\xffМЬЖ\xff",
106106
"\x003\n- '87\r\xff4Ю,Э:(5+)2Щ6019?Ш\xff./=\xff",
107107
]
108108
# Murray code ; NB: not all fractions are supported (source: https://en.wikipedia.org/wiki/Baudot_code)

src/codext/hashing/md.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,4 @@ def md2(data):
5656
add("md5", lambda s, error="strict": (hashlib.new("md5", b(s)).hexdigest(), len(s)), guess=None)
5757
if "md4" in hashlib.algorithms_available:
5858
add("md4", lambda s, error="strict": (hashlib.new("md4", b(s)).hexdigest(), len(s)), guess=None)
59+

0 commit comments

Comments
 (0)