apport (0.77) gutsy; urgency=low
.
* apport/report.py: Replace any() call with a list comprehension to work
with Python < 2.5. (LP: #104864)
* apport/report.py: Move the ctypes import to the one place where we
actually need it, and do not entirely fail if they do not exist (such a
Accepted into feisty-updates.
** Changed in: apport (Ubuntu Feisty)
Status: Fix Committed => Fix Released
--
Apport uses 'any' even in python2.4, causing NameError
https://bugs.launchpad.net/bugs/104864
You received this bug notification because you are a member of Ubuntu
Bugs, which is t
I verified this using the suggested test in comment 8 (thanks for
providing those instructions!) and it works now as expected.
** Tags added: verification-done
** Tags removed: verification-needed
--
Apport uses 'any' even in python2.4, causing NameError
https://bugs.launchpad.net/bugs/104864
Y
Accepted into feisty-proposed.
** Tags added: verification-needed
** Changed in: apport (Ubuntu Feisty)
Status: In Progress => Fix Committed
--
Apport uses 'any' even in python2.4, causing NameError
https://bugs.launchpad.net/bugs/104864
You received this bug notification because you are
Uploaded to feisty-proposed:
apport (0.76.1~prop1) feisty-proposed; urgency=low
.
Fix breakage with all applications that use Python 2.4:
.
* apport/report.py: Replace any() call with a list comprehension to work
with Python < 2.5. (LP: #104864)
* apport/report.py: Move the ctypes
Test for the SRU reviewers: Edit /usr/bin/bzr, change the #! line to
/usr/bin/python2.4, and append an 'assert False' after it.
With current Feisty:
$ bzr
Traceback (most recent call last):
File "/usr/bin/bzr", line 24, in ?
assert False
AssertionError
Error in sys.excepthook:
Traceback (mo
Oh, for the test above you must install python-ctypes, otherwise the
effect will be shadowed by bug 107662.
--
Apport uses 'any' even in python2.4, causing NameError
https://bugs.launchpad.net/bugs/104864
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug
Thank you, Martin. And I will continue to sing the praises of Ubuntu with
pride :)
--
Apport uses 'any' even in python2.4, causing NameError
https://bugs.launchpad.net/bugs/104864
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.
-
Matthew: Ah, I see what you mean. Right, good candidate for -updates
then, added a task.
--
Apport uses 'any' even in python2.4, causing NameError
https://bugs.launchpad.net/bugs/104864
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu
On Tuesday 17 April 2007, Martin Pitt wrote:
> Hi Matthew,
>
> Matthew Carpenter [2007-04-16 18:03 -]:
> > Not sure what this means. Does this mean that it will only be fixed in
> > Gutsy? I'm not familiar with "bzr head", but will this be fixed for
> > Feisty's release?
>
> Since I do not se
Hi Matthew,
Matthew Carpenter [2007-04-16 18:03 -]:
> Not sure what this means. Does this mean that it will only be fixed in
> Gutsy? I'm not familiar with "bzr head", but will this be fixed for
> Feisty's release?
Since I do not see that this is a critical bug for Feisty, it will
only be f
Not sure what this means. Does this mean that it will only be fixed in
Gutsy? I'm not familiar with "bzr head", but will this be fixed for
Feisty's release?
Thanks.
--
Apport uses 'any' even in python2.4, causing NameError
https://bugs.launchpad.net/bugs/104864
You received this bug notificati
Fixed in bzr head, will upload early in gutsy.
** Changed in: apport (Ubuntu)
Status: In Progress => Fix Committed
--
Apport uses 'any' even in python2.4, causing NameError
https://bugs.launchpad.net/bugs/104864
You received this bug notification because you are a member of Ubuntu
Bugs, w
Simple workaround would be something like this at the top of the file:
try:
any
except NameError:
# Taken from Python 2.5 built-in documentation
def any(iterable):
for element in iterable:
if element:
return True
return False
--
Appor
** Changed in: apport (Ubuntu)
Importance: Undecided => Medium
Assignee: (unassigned) => Martin Pitt
Status: Unconfirmed => In Progress
--
Apport uses 'any' even in python2.4, causing NameError
https://bugs.launchpad.net/bugs/104864
You received this bug notification because you ar
15 matches
Mail list logo