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 vstinner
Recipients tim.golden, vstinner
Date 2013-11-18.01:10:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1384737037.44.0.679088580882.issue19636@psf.upfronthosting.co.za>
In-reply-to
Content
Oh, I forgot to mention that my initial concern was the following warning:

  ..\Modules\posixmodule.c(4057): warning C4267: 'function' : conversion from 'size_t' to 'DWORD', possible loss of data [C:\buildbot.python.org\3.x.kloth-win64\build\PCbuild\pythoncore.vcxproj]

bufsize (Py_ssize_t) is passed to GetVolumePathNameW() which expected a DWORD. An OverflowError must be raised if bufsize is larger than DWORD_MAX (the constant is defined in Modules/_winapi.c, not in posixmodule.c).

But I prefer to fix the warning after this issue.
History
Date User Action Args
2013-11-18 01:10:37vstinnersetrecipients: + vstinner, tim.golden
2013-11-18 01:10:37vstinnersetmessageid: <1384737037.44.0.679088580882.issue19636@psf.upfronthosting.co.za>
2013-11-18 01:10:37vstinnerlinkissue19636 messages
2013-11-18 01:10:37vstinnercreate