Comment #3 on issue 332 by krisodb: the output XML should be locked when
the robot is running.
http://code.google.com/p/robotframework/issues/detail?id=332
From http://pleac.sourceforge.net/pleac_python/fileaccess.html
# On Windows:
import msvcrt
myfile.seek(5, 0)
msvcrt.locking(myfile.fileno(), msvcrt.LK_NBLCK, 3)
# On Unix:
import fcntl
fcntl.lockf(myfile.fileno(), fcntl.LOCK_EX | fcntl.LOCK_NB, 3, 5)
Also check:
http://mail.python.org/pipermail/python-list/2001-August/102617.html
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings