mirror of https://github.com/kivy/kivy.git
support: add documentation for support funcs
This commit is contained in:
parent
3195f66d82
commit
bbc04da883
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue