Mark Dickinson <[email protected]> added the comment: > [n for n in range(100) if log(2**n) != n]
Should be: [n for n in range(100) if log(2**n, 2) != n] ---------- _______________________________________ Python tracker <[email protected]> <http://bugs.python.org/issue9959> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
