[Python-checkins] r63831 - python/trunk/Doc/library/easydialogs.rst

georg.brandl python-checkins at python.org
Sat May 31 16:45:55 CEST 2008


Author: georg.brandl
Date: Sat May 31 16:45:55 2008
New Revision: 63831

Log:
#3005: add explaining sentence to easydialogs docs.


Modified:
   python/trunk/Doc/library/easydialogs.rst

Modified: python/trunk/Doc/library/easydialogs.rst
==============================================================================
--- python/trunk/Doc/library/easydialogs.rst	(original)
+++ python/trunk/Doc/library/easydialogs.rst	Sat May 31 16:45:55 2008
@@ -9,10 +9,12 @@
 
 
 The :mod:`EasyDialogs` module contains some simple dialogs for the Macintosh.
-All routines take an optional resource ID parameter *id* with which one can
-override the :const:`DLOG` resource used for the dialog, provided that the
-dialog items correspond (both type and item number) to those in the default
-:const:`DLOG` resource. See source code for details.
+The dialogs get launched in a separate application which appears in the dock and
+must be clicked on for the dialogs be displayed.  All routines take an optional
+resource ID parameter *id* with which one can override the :const:`DLOG`
+resource used for the dialog, provided that the dialog items correspond (both
+type and item number) to those in the default :const:`DLOG` resource. See source
+code for details.
 
 .. warning::
 


More information about the Python-checkins mailing list