support: add documentation for support funcs

This commit is contained in:
Mathieu Virbel 2011-11-08 23:22:46 +01:00
parent 3195f66d82
commit bbc04da883
2 changed files with 6 additions and 3 deletions

View File

@ -41,6 +41,7 @@ import kivy.modules.monitor
import kivy.modules.touchring
import kivy.modules.inspector
import kivy.network.urlrequest
import kivy.support
from kivy.factory import Factory
# force loading of all classes from factory

View File

@ -1,8 +1,11 @@
'''
Support: activate other framework/toolkit inside our event loop
Support
=======
Activate other framework/toolkit inside our event loop
'''
__all__ = ('install_gobject_iteration', )
__all__ = ('install_gobject_iteration', 'install_twisted_reactor')
def install_gobject_iteration():
@ -33,7 +36,6 @@ def install_gobject_iteration():
Clock.schedule_interval(_gobject_iteration, 0)
def install_twisted_reactor(**kwargs):
'''Installs a threaded twisted reactor, which will schedule one
reactor iteration before the next frame only when twisted needs