New submission from Feite Jaarsma <[EMAIL PROTECTED]>: The function 'def _test_parse_release_file()' has a for statement with a tuple as iter in it (examples of release file contents). This tuple is not a tuple. There is a ',' missing on every line (marked by '*'):
for input, output in ( # Examples of release file contents: ('SuSE Linux 9.3 (x86-64)', ('SuSE Linux ', '9.3', 'x86-64'))* ('SUSE LINUX 10.1 (X86-64)', ('SUSE LINUX ', '10.1', 'X86-64'))* ('SUSE LINUX 10.1 (i586)', ('SUSE LINUX ', '10.1', 'i586'))* ('Fedora Core release 5 (Bordeaux)', ('Fedora Core', '5', 'Bordeaux'))* ('Red Hat Linux release 8.0 (Psyche)', ('Red Hat Linux', '8.0', 'Psyche'))* ('Red Hat Linux release 9 (Shrike)', ('Red Hat Linux', '9', 'Shrike'))* ('Red Hat Enterprise Linux release 4 (Nahant)', ('Red Hat Enterprise Linux', '4', 'Nahant'))* ('CentOS release 4', ('CentOS', '4', None))* ('Rocks release 4.2.1 (Cydonia)', ('Rocks', '4.2.1', 'Cydonia')) ): ---------- components: Library (Lib) messages: 75024 nosy: Feite severity: normal status: open title: Tuple not callable in platform.py type: compile error versions: Python 2.6 _______________________________________ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue4157> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com