[New-bugs-announce] [issue4157] Tuple not callable in platform.py
Feite Jaarsma
report at bugs.python.org
Tue Oct 21 15:37:40 CEST 2008
New submission from Feite Jaarsma <f.jaarsma at innoteam.nl>:
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 <report at bugs.python.org>
<http://bugs.python.org/issue4157>
_______________________________________
More information about the New-bugs-announce
mailing list