show/hide this revision's text 2 added 1 characters in body

Python 2.6 2.6+ or 2.5 with from __future__ import with_statement

1/3:

with open('filename') as f:
    s = f.read()

2/4:

with open('filename', 'w') as f:
    f.write('data')
show/hide this revision's text 1

Python 2.6 or 2.5 with from __future__ import with_statement

1/3:

with open('filename') as f:
    s = f.read()

2/4:

with open('filename', 'w') as f:
    f.write('data')