[Python-checkins] r55677 - python/trunk/Lib/ctypes/wintypes.py
thomas.heller
python-checkins at python.org
Wed May 30 09:01:28 CEST 2007
Author: thomas.heller
Date: Wed May 30 09:01:25 2007
New Revision: 55677
Modified:
python/trunk/Lib/ctypes/wintypes.py
Log:
Correct the name of a field in the WIN32_FIND_DATAA and WIN32_FIND_DATAW structures.
Closes bug #1726026.
Modified: python/trunk/Lib/ctypes/wintypes.py
==============================================================================
--- python/trunk/Lib/ctypes/wintypes.py (original)
+++ python/trunk/Lib/ctypes/wintypes.py Wed May 30 09:01:25 2007
@@ -147,7 +147,7 @@
("dwReserved0", DWORD),
("dwReserved1", DWORD),
("cFileName", c_char * MAX_PATH),
- ("cAlternameFileName", c_char * 14)]
+ ("cAlternateFileName", c_char * 14)]
class WIN32_FIND_DATAW(Structure):
_fields_ = [("dwFileAttributes", DWORD),
@@ -159,7 +159,7 @@
("dwReserved0", DWORD),
("dwReserved1", DWORD),
("cFileName", c_wchar * MAX_PATH),
- ("cAlternameFileName", c_wchar * 14)]
+ ("cAlternateFileName", c_wchar * 14)]
__all__ = ['ATOM', 'BOOL', 'BOOLEAN', 'BYTE', 'COLORREF', 'DOUBLE',
'DWORD', 'FILETIME', 'HACCEL', 'HANDLE', 'HBITMAP', 'HBRUSH',
More information about the Python-checkins
mailing list