[python-win32] win32file.CreateHardLink() crashes

Toru Furukawa toru@oldriver.org
Mon, 09 Dec 2002 15:54:55 -0600


I ran the following script, on Windows2000 SP2 + Python2.2.2 + win32-149;

>>> import win32file
>>> win32file.CreateHardLink("b", "a")

"a" is a text file containing single line "foo", and the hardlink "b"
seems correctly created.  However, I got a window saying;

  python - Application Error
    The instruction at "0x00000003" referenced memmory at "0x00000003".
    The memory could not be "read".

What did I make wrong?

Toru