[issue2484] Cosmetic patch for warning "unused variable"

2008-03-26 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Thanks, fixed in r61927. -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ _

[issue2484] Cosmetic patch for warning "unused variable"

2008-03-25 Thread Hirokazu Yamamoto
Hirokazu Yamamoto <[EMAIL PROTECTED]> added the comment: I've confirmed trunk doesn't have this problem. Probably this is merge issue. r57928 changed the position of "int i,j" in py3k, but not changed in trunk, so when r61864 was merged into py3k some kind of conflict happened.

[issue2484] Cosmetic patch for warning "unused variable"

2008-03-25 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: This seems to be already fixed in trunk. Can you confirm? -- nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> __ _

[issue2484] Cosmetic patch for warning "unused variable"

2008-03-25 Thread Hirokazu Yamamoto
New submission from Hirokazu Yamamoto <[EMAIL PROTECTED]>: "int i,j;" in inner block is hiding "Py_ssize_t i,j;" -- components: Extension Modules files: fix_warning.patch keywords: patch, patch messages: 64499 nosy: ocean-city severity: normal status: open title: Cosmetic patch for warni