Wrapping functions in modules or packages.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Antoon Pardon

    #1

    Wrapping functions in modules or packages.

    I'm writing some utilty functions for use with gtk. But
    in order to use them correctly I have to know whether
    they are called in the gtk-thread or an other.

    So my idea was to wrap the gtk.main function so that
    it would registrate the thread_id that called it.

    So I was thinking about doing something like the
    following.


    import gtk

    import thread

    _gtkmain = gtk.main


    def main():

    global _gtkthread

    _gtk_thread = thread.get_iden t()
    _gtkmain()


    gtk.main = main


    Is this acceptable? Are there better ways to do things like
    this?
Working...