mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Syntax fixes for examples in the Doc/includes
This commit is contained in:
parent
134c35b191
commit
c961322f4f
2 changed files with 4 additions and 4 deletions
|
@ -12,6 +12,6 @@ headers = Parser().parsestr('From: <user@example.com>\n'
|
|||
'Body would go here\n')
|
||||
|
||||
# Now the header items can be accessed as a dictionary:
|
||||
print 'To: %s' % headers['to']
|
||||
print 'From: %s' % headers['from']
|
||||
print 'Subject: %s' % headers['subject']
|
||||
print('To: %s' % headers['to'])
|
||||
print('From: %s' % headers['from'])
|
||||
print('Subject: %s' % headers['subject'])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue