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.

作者 pitrou
收信人 Trundle, giampaolo.rodola, pitrou, tarek, vstinner
日期 2010-05-27.10:44:18
SpamBayes Score 0.15531689
Marked as misclassified
Message-id <1274957061.05.0.103779954667.issue8828@psf.upfronthosting.co.za>
In-reply-to
内容
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)
历史
日期 用户 动作 参数
2010-05-27 10:44:21pitrou修改recipients: + pitrou, vstinner, giampaolo.rodola, tarek, Trundle
2010-05-27 10:44:21pitrou修改messageid: <1274957061.05.0.103779954667.issue8828@psf.upfronthosting.co.za>
2010-05-27 10:44:19pitrou链接issue8828 messages
2010-05-27 10:44:18pitrou创建