This can be easily reproduced IRL with:

"""
import random
import sys
import time

fname = sys.argv[1]
for i in range(100):
    print "writing", i
    with open(fname, 'w') as fh:
        fh.write(str(i))
    wait_time = random.randint(10, 5000) / 1000.0
    time.sleep(wait_time)
"""

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.
https://bugs.launchpad.net/bugs/718924

Title:
  self conflict while saving the same file a lot

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to