mirror of https://github.com/python/cpython
Fixed a bug in the test jig.
This commit is contained in:
parent
6b8c52835c
commit
38151ed6b8
|
@ -523,7 +523,7 @@ if __name__ == '__main__':
|
||||||
return sys.stdin.readline().strip()
|
return sys.stdin.readline().strip()
|
||||||
|
|
||||||
fromaddr = prompt("From")
|
fromaddr = prompt("From")
|
||||||
toaddrs = ','.split(prompt("To"))
|
toaddrs = prompt("To").split(',')
|
||||||
print "Enter message, end with ^D:"
|
print "Enter message, end with ^D:"
|
||||||
msg = ''
|
msg = ''
|
||||||
while 1:
|
while 1:
|
||||||
|
|
Loading…
Reference in New Issue