mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Fixed a bug in the test jig.
This commit is contained in:
parent
6b8c52835c
commit
38151ed6b8
1 changed files with 1 additions and 1 deletions
|
@ -523,7 +523,7 @@ if __name__ == '__main__':
|
|||
return sys.stdin.readline().strip()
|
||||
|
||||
fromaddr = prompt("From")
|
||||
toaddrs = ','.split(prompt("To"))
|
||||
toaddrs = prompt("To").split(',')
|
||||
print "Enter message, end with ^D:"
|
||||
msg = ''
|
||||
while 1:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue