[issue28667] FD_SETSIZE is unsigned on FreeBSD

2017-08-22 Thread STINNER Victor
STINNER Victor added the comment: New changeset cb7fdf69ec9235cb358580f189089eaf575fb9df by Victor Stinner in branch '3.6': bpo-28667: Fix a compile warning on FreeBSD when compare with FD_SETSIZE. (#501) (#3190) https://github.com/python/cpython/commit/cb7fdf69ec9235cb358580f189089eaf575fb9df

[issue28667] FD_SETSIZE is unsigned on FreeBSD

2017-08-22 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +3229 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue28667] FD_SETSIZE is unsigned on FreeBSD

2017-03-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 783d0c1a1c723733adcdf4249240246fc35a5bcb by Serhiy Storchaka in branch 'master': bpo-28667: Fix a compile warning on FreeBSD when compare with FD_SETSIZE. (#501) https://github.com/python/cpython/commit/783d0c1a1c723733adcdf4249240246fc35a5bcb

[issue28667] FD_SETSIZE is unsigned on FreeBSD

2017-03-12 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue28667] FD_SETSIZE is unsigned on FreeBSD

2017-03-06 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +409 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue28667] FD_SETSIZE is unsigned on FreeBSD

2016-11-20 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28667] FD_SETSIZE is unsigned on FreeBSD

2016-11-11 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Seems FreeBSD is the only platforms with unsigned FD_SETSIZE. On NetBSD, Linux, and OpenBSD it is defined as just int. [1] This causes compiler warnings on FreeBSD. [2] Modules/selectmodule.c:72: warning: comparison between signed and unsigned Modules/sele