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 larry
Recipients Arfrever, Yury.Selivanov, benjamin.peterson, larry, neologix, r.david.murray, rosslagerwall, serhiy.storchaka
Date 2012-06-08.01:30:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1339119043.35.0.586981284043.issue14626@psf.upfronthosting.co.za>
In-reply-to
Content
Here's a nice fresh minor update.

Notes on this third patch:

* The docstrings are now done.

* I discovered that fchmodat() doesn't actually support
  AT_SYMLINK_NOFOLLOW!  glibc documents using the flag, then
  comically notes that it doesn't actually work.  Specifying
  it results in ENOTSUP every time.  os.chmod() now accomodates
  this; it throws NotImplementedError if it detects this situation.
  However it should also Just Work once glibc supports it.

* While editing the docstrings, I noticed that several of them
  had old-style octal constants ;-)  I fixed 'em.

* I added support for the remove_dir argument to unlink/remove
  on Windows.  I also made it work on non-Windows even when
  unlinkat() is not available.
History
Date User Action Args
2012-06-08 01:30:45larrysetrecipients: + larry, benjamin.peterson, Arfrever, r.david.murray, neologix, Yury.Selivanov, rosslagerwall, serhiy.storchaka
2012-06-08 01:30:43larrysetmessageid: <1339119043.35.0.586981284043.issue14626@psf.upfronthosting.co.za>
2012-06-08 01:30:42larrylinkissue14626 messages
2012-06-08 01:30:21larrycreate