[Bug 369245] Re: plwm/outline.py uses "as" as a variable and that is now a keyword on python2.6
Problem remains on ubuntu 9.10 Karmic Koala. Error log when installing the package: /usr/lib/pymodules/python2.5/plwm/outline.py:65: Warning: 'as' will become a reserved keyword in Python 2.6 /usr/lib/pymodules/python2.5/plwm/outline.py:140: Warning: 'as' will become a reserved keyword in Python 2.6 /usr/lib/pymodules/python2.5/plwm/outline.py:141: Warning: 'as' will become a reserved keyword in Python 2.6 /usr/lib/pymodules/python2.5/plwm/outline.py:157: Warning: 'as' will become a reserved keyword in Python 2.6 /usr/lib/pymodules/python2.5/plwm/outline.py:248: Warning: 'as' will become a reserved keyword in Python 2.6 /usr/lib/pymodules/python2.5/plwm/outline.py:250: Warning: 'as' will become a reserved keyword in Python 2.6 /usr/lib/pymodules/python2.5/plwm/outline.py:252: Warning: 'as' will become a reserved keyword in Python 2.6 Compiling /usr/lib/pymodules/python2.6/plwm/outline.py ... SyntaxError: ('invalid syntax', ('/usr/lib/pymodules/python2.6/plwm/outline.py', 65, 30, 'sx, sy, sw, sh, as = namepos\n')) ** Changed in: python-plwm (Ubuntu) Status: New => Confirmed -- plwm/outline.py uses "as" as a variable and that is now a keyword on python2.6 https://bugs.launchpad.net/bugs/369245 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 424864] Re: Video colors appear inverted in Karmic Alpha 5 with non-free driver.
I can confirm this bug as well. I've tried in different machines, all with nvidia proprietary drivers, and all after upgrade - totem's hue bar goes all way to the left. ** Changed in: nvidia-graphics-drivers-180 (Ubuntu) Status: New => Confirmed ** Package changed: nvidia-graphics-drivers-180 (Ubuntu) => totem (Ubuntu) -- Video colors appear inverted in Karmic Alpha 5 with non-free driver. https://bugs.launchpad.net/bugs/424864 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 716814] Re: Please re-enable CONFIG_SOUND_OSS* and CONFIG_SND_*OSS*
#579300 is what removed OSS support. #634211 is also related. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/716814 Title: Please re-enable CONFIG_SOUND_OSS* and CONFIG_SND_*OSS* -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 716814] Re: Please re-enable CONFIG_SOUND_OSS* and CONFIG_SND_*OSS*
I use transcode, it's the only thing that can record from my capture card with reasonable speed; mencoder, ffmpeg and vlc all drop too much frames to be useful. ** Changed in: linux (Ubuntu) Status: Incomplete => Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/716814 Title: Please re-enable CONFIG_SOUND_OSS* and CONFIG_SND_*OSS* -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 634211] Re: /dev/dsp* disappeared after upgrade Lucid=>Maverick [ how-to at #52]
I agree that a switch to a better audio interface would be great, but we're not there yet, since there are no replacements, so this is a regression. I use transcode to record audio/video and it has no alsa option. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/634211 Title: /dev/dsp* disappeared after upgrade Lucid=>Maverick [ how-to at #52] -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 725769] Re: crashes when running basic example
Why did you mark the bug as invalid? Is it a policy to invalidate bugs you can't confirm? I'm using the latest available in the latest ubuntu. Today is April 9 2011 and 11.04 Natty is not released yet, so latest ubuntu is 10.10 Maverick Meerkat. The most up-to-date package today in ubuntu Maverick Meerkat is 0.8.0-3 and that is the version I'm reporting this bug against. As I said in the bug report, if I install the version on bottle website, it works fine. ** Changed in: python-bottle (Ubuntu) Status: Invalid => New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/725769 Title: crashes when running basic example -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 725769] Re: crashes when running basic example
This line from the traceback is calling my attention reactor.listenTCP(self.port, self.host) API from twisted 10.1.0 says reactor.listenTCP doesn't take host and port http://twistedmatrix.com/documents/10.1.0/api/twisted.internet.interfaces.IReactorTCP.html#listenTCP -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/725769 Title: crashes when running basic example -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 725769] Re: crashes when running basic example
Ok, this patch fixes it for me. The only fix is to pass a factory instead of the hostname as second parameter to listenTCP, and use the interface parameter to pass the hostname, instead. The line above was creating a factory but not assigning it to any variable. So I just used that. ** Patch added: "patch to reactor.listenTCP call" https://bugs.launchpad.net/ubuntu/+source/python-bottle/+bug/725769/+attachment/2005534/+files/bottle725769.patch -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/725769 Title: crashes when running basic example -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 725769] [NEW] crashes when running basic example
Public bug reported: Binary package hint: python-bottle The most basic example on python bottle webpage at http://bottle.paws.de/: from bottle import route, run @route('/:name') def index(name='World'): return 'Hello %s!' % name run(host='localhost', port=8080) fails with this traceback: Bottle server starting up (using AutoServer())... Listening on http://localhost:8080/ Use Ctrl-C to quit. Traceback (most recent call last): File "bottlest.py", line 7, in run(host='localhost', port=8080) File "/usr/lib/pymodules/python2.6/bottle.py", line 1247, in run server.run(app) File "/usr/lib/pymodules/python2.6/bottle.py", line 1220, in run return sa(self.host, self.port, **self.options).run(handler) File "/usr/lib/pymodules/python2.6/bottle.py", line 1193, in run reactor.listenTCP(self.port, self.host) File "/usr/lib/python2.6/dist-packages/twisted/internet/posixbase.py", line 419, in listenTCP p.startListening() File "/usr/lib/python2.6/dist-packages/twisted/internet/tcp.py", line 865, in startListening self.factory.doStart() AttributeError: 'str' object has no attribute 'doStart' After that you have to force-kill the process. The same problem doesn't happen if you install bottle from the website instead of using the ubuntu package. ProblemType: Bug DistroRelease: Ubuntu 10.10 Package: python-bottle 0.8.0-3 ProcVersionSignature: Ubuntu 2.6.35-25.44-generic 2.6.35.10 Uname: Linux 2.6.35-25-generic x86_64 Architecture: amd64 Date: Sat Feb 26 18:26:20 2011 InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release amd64 (20101007) PackageArchitecture: all ProcEnviron: LANGUAGE=pt_BR:pt:en LANG=pt_BR.utf8 SHELL=/bin/bash SourcePackage: python-bottle ** Affects: python-bottle (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug maverick -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/725769 Title: crashes when running basic example -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 725769] Re: crashes when running basic example
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/725769 Title: crashes when running basic example -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs