Hello everyone, I'm trying to test the tempfile module with the following script, which basically creates a temporary file, fills the file with some test data and prints it.
import tempfile
t = tempfile.TemporaryFile()
t.write("lalalala")
t.flush()
print t.read()
Unfortunately, the print statement gives me an empty string. Can
somebody tell me what I'm doing wrong ?
regards Samir
--
http://mail.python.org/mailman/listinfo/python-list
