diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-08-15 15:47:01 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-08-15 15:47:01 +0000 |
| commit | e573cf16494de5150298e52250c0474a94ca7fb1 (patch) | |
| tree | a15ab5c6fd6dfa33f2d0b614e658122c4e527941 | |
| parent | 7471344239d250c6ecadec8ae259ace96687a6ba (diff) | |
| download | enigma2-e573cf16494de5150298e52250c0474a94ca7fb1.tar.gz enigma2-e573cf16494de5150298e52250c0474a94ca7fb1.zip | |
changes for use of new swig version 1.3.29 (c++ python wrapper)
with the new swig version all python -> c++ calls are round about 40% faster
you must change in openembedded/conf/distro PREFERRED_VERSION_swig-native =
"1.3.27" to PREFERRED_VERSION_swig-native = "1.3.29"
or do a bitbake -b ../openembedded/packages/swig/swig-native_1.3.29.bb
| -rw-r--r-- | RecordTimer.py | 2 | ||||
| -rw-r--r-- | lib/python/Screens/ChannelSelection.py | 2 | ||||
| -rw-r--r-- | lib/python/Screens/EventView.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/RecordTimer.py b/RecordTimer.py index 1d343952..da629ee7 100644 --- a/RecordTimer.py +++ b/RecordTimer.py @@ -7,7 +7,7 @@ from Components.config import config import timer import xml.dom.minidom -from enigma import quitMainloop, eEPGCache, eEPGCachePtr +from enigma import quitMainloop, eEPGCache from Screens.MessageBox import MessageBox import NavigationInstance diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index 6239b001..01feaab1 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -4,7 +4,7 @@ from Components.ServiceList import ServiceList from Components.ActionMap import NumberActionMap, ActionMap from Components.MenuList import MenuList from EpgSelection import EPGSelection -from enigma import eServiceReference, eEPGCache, eEPGCachePtr, eServiceCenter, eServiceCenterPtr, iMutableServiceListPtr, iStaticServiceInformationPtr, eTimer, eDVBDB +from enigma import eServiceReference, eEPGCache, eServiceCenter, eServiceCenterPtr, iMutableServiceListPtr, iStaticServiceInformationPtr, eTimer, eDVBDB from Components.config import config, configElement, ConfigSubsection, configText, currentConfigSelectionElement from Screens.FixedMenu import FixedMenu from Tools.NumericalTextInput import NumericalTextInput diff --git a/lib/python/Screens/EventView.py b/lib/python/Screens/EventView.py index 6563daa1..8a684ead 100644 --- a/lib/python/Screens/EventView.py +++ b/lib/python/Screens/EventView.py @@ -3,7 +3,7 @@ from Components.ActionMap import ActionMap from Components.Button import Button from Components.Label import Label from Components.ScrollLabel import ScrollLabel -from enigma import eServiceEventPtr, eEPGCachePtr, eEPGCache, eTimer +from enigma import eServiceEventPtr, eEPGCache, eTimer from ServiceReference import ServiceReference from RecordTimer import RecordTimerEntry, parseEvent from TimerEntry import TimerEntry |
