commit e3a147d24b37d4d9af37faf45ee4602b5771c9a4
Author: Mark Spieth <mspieth@digivation.com.au>
Date: Fri Apr 30 16:56:38 2010 +1000
Initializing audio parms from " fix with issues with python 2.56
diff --git a/mythtv/bindings/python/MythTV/MythBase.py b/mythtv/bindings/python/MythTV/MythBase.py
index 87d519f..670f505 100755
|
a
|
b
|
|
| 4 | 4 | Provides base classes for accessing MythTV |
| 5 | 5 | """ |
| 6 | 6 | |
| | 7 | from __future__ import with_statement |
| 7 | 8 | from MythStatic import * |
| 8 | 9 | |
| 9 | 10 | import os |
| … |
… |
from thread import start_new_thread, allocate_lock
|
| 22 | 23 | from select import select |
| 23 | 24 | from uuid import uuid4 |
| 24 | 25 | |
| | 26 | |
| 25 | 27 | import MySQLdb, MySQLdb.cursors |
| 26 | 28 | MySQLdb.__version__ = tuple([v for v in MySQLdb.__version__.split('.')]) |
| 27 | 29 | |
diff --git a/mythtv/bindings/python/MythTV/wikiscripts/wikiscripts.py b/mythtv/bindings/python/MythTV/wikiscripts/wikiscripts.py
index f54d1ab..3021a05 100644
|
a
|
b
|
|
| 2 | 2 | # -*- coding: UTF-8 -*- |
| 3 | 3 | #---------------------- |
| 4 | 4 | |
| | 5 | from __future__ import with_statement |
| 5 | 6 | from urllib import urlopen |
| 6 | 7 | from time import time |
| 7 | 8 | from thread import start_new_thread, allocate_lock |
| 8 | 9 | from time import sleep, time |
| 9 | 10 | from MythTV import QuickDictData |
| | 11 | |
| 10 | 12 | import cPickle |
| 11 | 13 | import os |
| 12 | 14 | |