gnumed-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Gnumed-devel] GNUmed 0.9 call for testing


From: Sebastian Hilbert
Subject: Re: [Gnumed-devel] GNUmed 0.9 call for testing
Date: Wed, 23 Feb 2011 19:50:22 +0100
User-agent: KMail/1.13.5 (Linux/2.6.34.7-0.3-default; KDE/4.6.0; i686; ; )

On Wednesday 23 February 2011 14:35:01 Karsten Hilbert wrote:
> On Thu, Feb 10, 2011 at 07:49:51PM +0100, Hilbert, Sebastian wrote:

 
> What does
> 
>       help(wx.lib.pubsub.pub)

>>> import wx.lib.pubsub as p
>>> help(wx.lib.pubsub)

Help on package wx.lib.pubsub in wx.lib:

NAME
    wx.lib.pubsub - Publish-subscribe package.

FILE
    /usr/lib/python2.6/site-packages/wx-2.8-gtk2-
unicode/wx/lib/pubsub/__init__.py

DESCRIPTION
    This package provides the following modules:
    
    - pub: "entry point" module for core pubsub functionality. It provides 
      functions for sending messages and subscribing listeners and various
      others.
    - utils: subpackage of utility functions and classes for debugging
      messages, handling exceptions raised in listeners, and more.
    - setupv1: (deprecated) module to force pubsub to use the old,
      "version 1" (aka v1) API (should only be useful to wxPython users
      for legacy code).
    - setuparg1: module to setup pubsub to use "arg1" messaging protocol
    - setupkwargs: module to setup pubsub to use "kwargs" messaging protocol
    
    For instance::
    
        from pubsub import pub
        pub.sendMessage('topic', data1=123)
    
    :copyright: Copyright 2006-2009 by Oliver Schoenborn, all rights reserved.
    :license: BSD, see LICENSE.txt for details.
    
    Last known commit:
    - $Date: 2010-02-13 08:57:21 -0500 (Sat, 13 Feb 2010) $
    - $Revision: 249 $

PACKAGE CONTENTS
    autosetuppubsubv1
    core (package)
    pub
    pubsubconf
    setuparg1
    setupkwargs
    setupv1
    setupv2
    utils

FUNCTIONS
    printImported()
        Output a list of pubsub modules imported so far

DATA
    __all__ = ['pub', 'utils', 'printImported', 'setupkwargs', 'setuparg1'...



> 
> say ?
> 
> >     - utils: subpackage of utility functions and classes for debugging
> >     
> >       messages, handling exceptions raised in listeners, and more.
> 
> What does
> 
>       help(wx.lib.pubsub.utils)

does not work immediately but

>>> import wx.lib.pubsub as p
>>> help(wx.lib.pubsub.utils)

gives


Help on module wx.lib.pubsub.utils in wx.lib.pubsub:

NAME
    wx.lib.pubsub.utils - There are no utilities supported for legacy v1 of 
pubsub.

FILE
    /usr/lib/python2.6/site-packages/wx-2.8-gtk2-
unicode/wx/lib/pubsub/pubsub1/utils.py

DESCRIPTION
    
    :copyright: Copyright 2006-2009 by Oliver Schoenborn, all rights reserved.
    :license: BSD, see LICENSE.txt for details.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]