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: fix a few PyInt_Check vs PyLong_Check problems
Type: Stage:
Components: Versions: Python 3.0
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, gvanrossum
Priority: normal Keywords: patch

Created on 2007-10-23 18:41 by georg.brandl, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
long_check.diff georg.brandl, 2007-10-23 18:41
Messages (3)
msg56685 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2007-10-23 18:41
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.
msg56687 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2007-10-23 19:20
Please check in and close -- thanks for finding these!
msg56689 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2007-10-23 19:24
Committed r58617.
History
Date User Action Args
2022-04-11 14:56:27adminsetgithub: 45657
2008-01-06 22:29:45adminsetkeywords: - py3k
versions: Python 3.0
2007-10-23 19:24:34georg.brandlsetstatus: open -> closed
messages: + msg56689
2007-10-23 19:20:22gvanrossumsetassignee: gvanrossum -> georg.brandl
resolution: accepted
messages: + msg56687
2007-10-23 18:41:36georg.brandlcreate