# New Ticket Created by Simon Glover # Please include the string: [perl #15357] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt2/Ticket/Display.html?id=15357 > The file descriptors produced by the open op aren't compatible with the ones required by the read & write ops (the versions in core.ops) so this: open I0, "tempfile" write I0, 1 end simply fails quietly - the open succeeds (provided that tempfile exists), but nothing gets written to the file. Simon