[issue1316] fix a few PyInt_Check vs PyLong_Check problems

2007-10-23 Thread Georg Brandl
Georg Brandl added the comment: Committed r58617. -- status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list

[issue1316] fix a few PyInt_Check vs PyLong_Check problems

2007-10-23 Thread Guido van Rossum
Guido van Rossum added the comment: Please check in and close -- thanks for finding these! -- assignee: gvanrossum -> georg.brandl resolution: -> accepted __ Tracker <[EMAIL PROTECTED]> _

[issue1316] fix a few PyInt_Check vs PyLong_Check problems

2007-10-23 Thread Georg Brandl
New submission from Georg Brandl: This fixes a few places where PyInt_Check and PyLong_Check are used redundantly, and where the checks must be changed now that there's only PyLong. -- assignee: gvanrossum files: long_check.diff keywords: patch, py3k messages: 56685 nosy: georg.brandl, g