This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: multiprocessing/pipe_connection.c compiler warning (conn_poll)
Type: compile error Stage:
Components: Library (Lib) Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jnoller Nosy List: amaury.forgeotdarc, jnoller, ocean-city
Priority: normal Keywords: patch

Created on 2009-01-19 19:14 by ocean-city, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
pipe_connection_c.patch ocean-city, 2009-01-19 19:14
Messages (8)
msg80204 - (view) Author: Hirokazu Yamamoto (ocean-city) * (Python committer) Date: 2009-01-19 19:14
I got compiler warning "conn_poll takes too many arguments".
I hope the attached patch is right fix.
msg80219 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2009-01-19 23:20
On Windows only, since r68768. Patch seems OK to me.
msg80228 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-01-20 00:18
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
msg80229 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-01-20 00:25
r68788 on py3k
msg84780 - (view) Author: Hirokazu Yamamoto (ocean-city) * (Python committer) Date: 2009-03-31 13:46
I noticed this warning still happens on release26-maint. Is backporting
this to release26-maint not good for binary compatibility reason?
msg84785 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2009-03-31 14:25
The function is static and not visible to other modules.
The patch can be backported without compatibility problems.
msg84787 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-03-31 14:32
I'll be back porting it today
msg84788 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-03-31 14:35
MErged 70814
History
Date User Action Args
2022-04-11 14:56:44adminsetgithub: 49252
2009-03-31 14:35:34jnollersetmessages: + msg84788
2009-03-31 14:32:39jnollersetmessages: + msg84787
2009-03-31 14:25:29amaury.forgeotdarcsetmessages: + msg84785
2009-03-31 13:46:07ocean-citysetmessages: + msg84780
2009-01-20 00:25:55jnollersetstatus: open -> closed
resolution: fixed
messages: + msg80229
2009-01-20 00:18:19jnollersetmessages: + msg80228
2009-01-19 23:20:29amaury.forgeotdarcsetassignee: jnoller
messages: + msg80219
nosy: + amaury.forgeotdarc, jnoller
2009-01-19 19:14:43ocean-citycreate