Skip to content

Commit

Permalink
Remove unneeded continuation chars
Browse files Browse the repository at this point in the history
  • Loading branch information
akuchling committed Apr 24, 2003
1 parent f64509e commit e81866e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Demo/md5test/md5driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ def MDPrint(str):
outstr = ''
for i in str:
o = ord(i)
outstr = outstr \
+ string.hexdigits[(o >> 4) & 0xF] \
+ string.hexdigits[o & 0xF]
outstr = (outstr
+ string.hexdigits[(o >> 4) & 0xF]
+ string.hexdigits[o & 0xF])
print outstr,


Expand Down Expand Up @@ -97,8 +97,8 @@ def MDTestSuite():
MDString('abc')
MDString('message digest')
MDString(makestr(ord('a'), ord('z')))
MDString(makestr(ord('A'), ord('Z')) \
+ makestr(ord('a'), ord('z')) \
MDString(makestr(ord('A'), ord('Z'))
+ makestr(ord('a'), ord('z'))
+ makestr(ord('0'), ord('9')))
MDString((makestr(ord('1'), ord('9')) + '0') * 8)

Expand Down

0 comments on commit e81866e

Please sign in to comment.