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 nobody
Recipients
Date 2001-11-05.19:34:06
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
NTFS has (always?) had hard link support.  This 
functionality is now exposed in Win32 starting with 
Windows 2000 [see CreateHardLink()].  I've added 
Windows support to os.link().  I've tried to support
FAT, NT, 95 by doing a CopyFile().  2000 support is 
enabled by defining _WIN32_WINNT=0x500 in 
pythoncore.dsp.  When this is done, the redundant 
#include <windows.h> in errnomodule.c gives 
compilation errors.
History
Date User Action Args
2007-08-23 16:01:41adminlinkissue478407 messages
2007-08-23 16:01:41admincreate