[issue28083] socket: finish constant to Enum/Flag conversion

2016-09-11 Thread Ethan Furman
Ethan Furman added the comment: Thanks, Ned! -- assignee: -> ethan.furman ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue28083] socket: finish constant to Enum/Flag conversion

2016-09-11 Thread Ned Deily
Ned Deily added the comment: One could argue that it is a bug that the other constants are missing. Ethan, if you can work with Christian to get them in by b2, that would be acceptable. -- nosy: -larry ___ Python tracker

[issue28083] socket: finish constant to Enum/Flag conversion

2016-09-11 Thread Christian Heimes
Christian Heimes added the comment: You have to as Ned, not Larry. :) -- nosy: +ned.deily ___ Python tracker ___ ___ Python-bugs-list

[issue28083] socket: finish constant to Enum/Flag conversion

2016-09-11 Thread Ethan Furman
Ethan Furman added the comment: Still need to update docs. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue28083] socket: finish constant to Enum/Flag conversion

2016-09-11 Thread Ethan Furman
Ethan Furman added the comment: I don't have enough socket experience to know which constants should go into what groups and what those groups should be called. So far my involvement has been to switch other's patches to use Enum._convert instead of "globals().update(Enum.__members__)". (Thi

[issue28083] socket: finish constant to Enum/Flag conversion

2016-09-11 Thread Christian Heimes
Christian Heimes added the comment: socketmodule.c has more namespaces. Are you planning to wrap them, too? NETLINK_ BTPROTO_ SOL_ HCI_ PF_ PACKET_ TIPC_ SCM_ ALG_ (*) CAN_ (*) RDS_ (*) IPPROTO_ IP_ IPV6_ TCP_ EAI_ SHUT_ RCVALL_ (*) constant namespace has sub-namespaces, e,g ALG_SET_ and ALG_O

[issue28083] socket: finish constant to Enum/Flag conversion

2016-09-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4a027e55dae3 by Ethan Furman in branch 'default': issue28083: add IntFlag constants https://hg.python.org/cpython/rev/4a027e55dae3 -- nosy: +python-dev ___ Python tracker

[issue28083] socket: finish constant to Enum/Flag conversion

2016-09-11 Thread Ethan Furman
New submission from Ethan Furman: Split from issue23591. Add IntFlag constants for consistency with IntEnum constants. -- files: issue-socket.stoneleaf.01.patch keywords: patch messages: 275851 nosy: ethan.furman, serhiy.storchaka priority: normal severity: normal stage: commit review s