[issue16376] wrong type for wintypes.BYTE

2021-06-17 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +amaury.forgeotdarc, belopolsky versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker ___

[issue16376] wrong type for wintypes.BYTE

2019-04-26 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16376] wrong type for wintypes.BYTE

2014-07-13 Thread Mark Lawrence
Mark Lawrence added the comment: All cbytes tests passed after the change was made but I've no idea as to the impact of this. -- keywords: +patch nosy: +BreamoreBoy versions: -Python 3.1, Python 3.2, Python 3.3 Added file: http://bugs.python.org/file35940/Issue16376.diff

[issue16376] wrong type for wintypes.BYTE

2012-12-28 Thread Meador Inge
Changes by Meador Inge mead...@gmail.com: -- nosy: +meador.inge ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16376 ___ ___ Python-bugs-list

[issue16376] wrong type for wintypes.BYTE

2012-11-01 Thread Santoso Wijaya
Changes by Santoso Wijaya santoso.wij...@gmail.com: -- versions: +Python 3.4, Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16376 ___

[issue16376] wrong type for wintypes.BYTE

2012-11-01 Thread Santoso Wijaya
Changes by Santoso Wijaya santoso.wij...@gmail.com: -- type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16376 ___ ___

[issue16376] wrong type for wintypes.BYTE

2012-10-31 Thread anatoly techtonik
New submission from anatoly techtonik: Windows BYTE type is unsigned char, but ctypes defines it as signed. {{{ BYTE A byte (8 bits). This type is declared in WinDef.h as follows: typedef unsigned char BYTE; typedef unsigned char BYTE; }}}