This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients Trundle, giampaolo.rodola, pitrou, tarek, vstinner
Date 2010-05-27.10:44:18
SpamBayes Score 0.15531689
Marked as misclassified No
Message-id <1274957061.05.0.103779954667.issue8828@psf.upfronthosting.co.za>
In-reply-to
Content
It seems you are proposing to call "atomic" something which isn't atomic:

   def atomic_rename(src, dst):
      if os.path.exists(dst):
         old = _create_old_filename(dst)
         rename(dst, old)
         rename(src, dst)
         unlink(old)
History
Date User Action Args
2010-05-27 10:44:21pitrousetrecipients: + pitrou, vstinner, giampaolo.rodola, tarek, Trundle
2010-05-27 10:44:21pitrousetmessageid: <1274957061.05.0.103779954667.issue8828@psf.upfronthosting.co.za>
2010-05-27 10:44:19pitroulinkissue8828 messages
2010-05-27 10:44:18pitroucreate