From: Christopher Arndt <chris.arndt@web.de>
To: alsa-devel@alsa-project.org
Subject: Re: pyalsa: SeqEvent.time strangeness
Date: Mon, 03 Aug 2009 14:21:54 +0200 [thread overview]
Message-ID: <4A76D662.9030002@web.de> (raw)
In-Reply-To: <4A76D01F.1090603@ladisch.de>
[-- Attachment #1: Type: text/plain, Size: 655 bytes --]
Clemens Ladisch schrieb:
> Christopher Arndt wrote:
>> I've tested this now and encountered a very strange bevahior of the
>> event time set by the queue:
>
> Apparently, you are the first one who tried to use this. Fixed now:
> http://git.alsa-project.org/?p=alsa-python.git;a=commitdiff;h=9a7dea33dddeb2d9d7693257323d43ccffbffed2
Excelllent! The test script now produces correct results.
Thanks for the fix!
Might I suggest another patch to pyalsa? This would allow to use
developers to use "python setup.py develop" to install their git version
as a Python egg-link and makes it much easier to use pyalasa with
virtual Python environments.
Chris
[-- Attachment #2: setuptools.diff --]
[-- Type: text/plain, Size: 323 bytes --]
diff --git a/setup.py b/setup.py
index fa7f2d6..c2b6389 100755
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,10 @@
import os
import sys
-from distutils.core import setup, Extension
+try:
+ from setuptools import setup, Extension
+except ImportError:
+ from distutils.core import setup, Extension
VERSION='1.0.20'
[-- Attachment #3: Type: text/plain, Size: 160 bytes --]
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
next prev parent reply other threads:[~2009-08-03 12:22 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-17 12:54 pyalsa: synchronizing queue with MIDI clock events Christopher Arndt
2009-07-20 12:31 ` Christopher Arndt
2009-07-21 13:32 ` Clemens Ladisch
2009-07-21 16:20 ` Christopher Arndt
2009-07-31 18:26 ` pyalsa: SeqEvent.time strangeness (Was: synchronizing queue with MIDI clock events) Christopher Arndt
2009-08-02 15:42 ` Christopher Arndt
2009-08-03 11:55 ` Clemens Ladisch
2009-08-03 12:21 ` Christopher Arndt [this message]
2009-08-04 9:45 ` pyalsa: SeqEvent.time strangeness Clemens Ladisch
2009-08-04 11:10 ` Christopher Arndt
2009-08-04 13:03 ` Clemens Ladisch
2009-08-05 13:18 ` [PATCH] alsa-python: Add support for setuptools Christopher Arndt
2009-08-05 13:30 ` Clemens Ladisch
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4A76D662.9030002@web.de \
--to=chris.arndt@web.de \
--cc=alsa-devel@alsa-project.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.