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.

Author tim.peters
Recipients
Date 2001-05-09.19:57:41
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=31435

Rejected as requested.  But you could, e.g., instead change 
the "error = 1" part of the macro to "set_error(&error)" 
and define a

static void
set_error(int* error) {*error = 1;}

function near the top of the file.  Then the unused var 
wngs should go away, and the oost of an extra function call 
in case there *is* an error is insignificant.

If I had a pthreads box with a picky compiler to test it 
on, I'd do that myself.
History
Date User Action Args
2007-08-23 15:04:46adminlinkissue416250 messages
2007-08-23 15:04:46admincreate