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.

classification
Title: Set st_dev on Windows as unsigned long
Type: behavior Stage: resolved
Components: Extension Modules, Windows Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: serhiy.storchaka Nosy List: brian.curtin, python-dev, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2013-01-02 15:32 by serhiy.storchaka, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
st_dev_unsigned.patch serhiy.storchaka, 2013-01-02 15:32 review
Messages (3)
msg178816 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2013-01-02 15:32
st_dev field of stat() result was set as signed long or long long, but now it is unsigned long on Windows (see issue11939). The proposed patch uses appropriate conversion for it.
msg178820 - (view) Author: Brian Curtin (brian.curtin) * (Python committer) Date: 2013-01-02 16:11
Looks good.
msg178822 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-01-02 16:23
New changeset 07d07111cec9 by Serhiy Storchaka in branch 'default':
Issue #16841: Set st_dev on Windows as unsigned long to match its DWORD type.
http://hg.python.org/cpython/rev/07d07111cec9
History
Date User Action Args
2022-04-11 14:57:40adminsetgithub: 61045
2013-01-02 17:02:37serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2013-01-02 16:23:55python-devsetnosy: + python-dev
messages: + msg178822
2013-01-02 16:11:17brian.curtinsetassignee: serhiy.storchaka
messages: + msg178820
2013-01-02 15:32:57serhiy.storchakacreate