Issue 5002: multiprocessing/pipe_connection.c compiler warning (conn_poll) (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/49252

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:44 admin set github: 49252
2009-03-31 14:35:34 jnoller set messages: +
2009-03-31 14:32:39 jnoller set messages: +
2009-03-31 14:25:29 amaury.forgeotdarc set messages: +
2009-03-31 13:46:07 ocean-city set messages: +
2009-01-20 00:25:55 jnoller set status: open -> closedresolution: fixedmessages: +
2009-01-20 00🔞19 jnoller set messages: +
2009-01-19 23:20:29 amaury.forgeotdarc set assignee: jnollermessages: + nosy: + amaury.forgeotdarc, jnoller
2009-01-19 19:14:43 ocean-city create