[issue5002] multiprocessing/pipe_connection.c compiler warning (conn_poll)

2009-03-31 Thread Jesse Noller
Jesse Noller added the comment: MErged 70814 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue5002] multiprocessing/pipe_connection.c compiler warning (conn_poll)

2009-03-31 Thread Jesse Noller
Jesse Noller added the comment: I'll be back porting it today -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5002] multiprocessing/pipe_connection.c compiler warning (conn_poll)

2009-03-31 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: The function is static and not visible to other modules. The patch can be backported without compatibility problems. -- ___ Python tracker ___

[issue5002] multiprocessing/pipe_connection.c compiler warning (conn_poll)

2009-03-31 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: I noticed this warning still happens on release26-maint. Is backporting this to release26-maint not good for binary compatibility reason? -- ___ Python tracker _

[issue5002] multiprocessing/pipe_connection.c compiler warning (conn_poll)

2009-01-19 Thread Jesse Noller
Jesse Noller added the comment: r68788 on py3k -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-

[issue5002] multiprocessing/pipe_connection.c compiler warning (conn_poll)

2009-01-19 Thread Jesse Noller
Jesse Noller added the comment: checked in, trunk, r68787 tests pass. Sorry about that, don't have a windows machine handy and I hadn't had a chance to check the buildbots ___ Python tracker ___

[issue5002] multiprocessing/pipe_connection.c compiler warning (conn_poll)

2009-01-19 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: On Windows only, since r68768. Patch seems OK to me. -- assignee: -> jnoller nosy: +amaury.forgeotdarc, jnoller ___ Python tracker ___ __

[issue5002] multiprocessing/pipe_connection.c compiler warning (conn_poll)

2009-01-19 Thread Hirokazu Yamamoto
New submission from Hirokazu Yamamoto : I got compiler warning "conn_poll takes too many arguments". I hope the attached patch is right fix. -- components: Library (Lib) files: pipe_connection_c.patch keywords: patch messages: 80204 nosy: ocean-city severity: normal status: open title: m