Changes between Initial Version and Version 1 of Ticket #17447, comment 2
- Timestamp:
- Feb 5, 2012, 3:26:17 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17447, comment 2
initial v1 1 It a non issue for Python, beacause this code work in Python 2.x, and Python 3.2+ just uses {{{if not callable(c)}}}. One way to fix this, without touching the verbatim copy would be to alter 2to3, to fix the check.1 It's a non issue for Python, beacause this code work in Python 2.x, and Python 3.2+ just uses {{{if not callable(c)}}}. One way to fix this, without touching the verbatim copy would be to alter 2to3, to fix the check. 2 2 3 3 I may be missing something, but isn't this check exactly equal to what {{{callable()}}} does? If yes, I'm in favor of changing this.