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 ocean-city
Recipients amaury.forgeotdarc, brian.curtin, giampaolo.rodola, ocean-city
Date 2010-11-26.00:26:51
SpamBayes Score 0.00026081278
Marked as misclassified No
Message-id <1290731213.07.0.352248911673.issue8879@psf.upfronthosting.co.za>
In-reply-to
Content
Or, use GetFileInformationByHandleEx on Vista or above, and
NtQueryInformationFile under Vista. NtQueryInformationFile
is windows internal function and MS may change its behavior,
but probably we can think it won't happen on WinXP.

# These functions are needed to get real filename from
# open handle to set S_IEXEC.

And provide windows specific functions
  os._open/os._lopen: open windows handle same as
                      CreateFile in os.stat/os.lstat
  os._osfstat: stat for windows handle
  os._close: close windows handle

and if the file is hard link, store windows handle anywhere
in TarFile object. (I created branch for it, but I'm not sure
I can do it)
History
Date User Action Args
2010-11-26 00:42:25ocean-cityunlinkissue8879 messages
2010-11-26 00:26:53ocean-citysetrecipients: + ocean-city, amaury.forgeotdarc, giampaolo.rodola, brian.curtin
2010-11-26 00:26:53ocean-citysetmessageid: <1290731213.07.0.352248911673.issue8879@psf.upfronthosting.co.za>
2010-11-26 00:26:51ocean-citylinkissue8879 messages
2010-11-26 00:26:51ocean-citycreate