Revision: 4275 Author: spielmann.robert Date: Fri Oct 29 16:53:05 2010 Log: Added __all__ to Dialogs library
fixes issue 677 http://code.google.com/p/robotframework/source/detail?r=4275 Modified: /trunk/src/robot/libraries/Dialogs.py ======================================= --- /trunk/src/robot/libraries/Dialogs.py Mon Oct 4 16:09:32 2010 +++ /trunk/src/robot/libraries/Dialogs.py Fri Oct 29 16:53:05 2010 @@ -23,6 +23,9 @@ Note: Dialogs library cannot be used with timeouts on Windows with Python. """ +__all__ = ['execute_manual_step', 'get_value_from_user', + 'get_selection_from_user', 'pause_execution'] + import sys try:
