[Python-checkins] r64630 - python/trunk/Doc/library/msilib.rst

georg.brandl python-checkins at python.org
Tue Jul 1 22:18:11 CEST 2008


Author: georg.brandl
Date: Tue Jul  1 22:18:10 2008
New Revision: 64630

Log:
#3216: fix Execute's parameter description.


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

Modified: python/trunk/Doc/library/msilib.rst
==============================================================================
--- python/trunk/Doc/library/msilib.rst	(original)
+++ python/trunk/Doc/library/msilib.rst	Tue Jul  1 22:18:10 2008
@@ -1,4 +1,3 @@
-
 :mod:`msilib` --- Read and write Microsoft Installer files
 ==========================================================
 
@@ -165,11 +164,11 @@
 ------------
 
 
-.. method:: View.Execute([params=None])
+.. method:: View.Execute(params)
 
-   Execute the SQL query of the view, through :cfunc:`MSIViewExecute`. *params* is
-   an optional record describing actual values of the parameter tokens in the
-   query.
+   Execute the SQL query of the view, through :cfunc:`MSIViewExecute`. If
+   *params* is not ``None``, it is a record describing actual values of the
+   parameter tokens in the query.
 
 
 .. method:: View.GetColumnInfo(kind)


More information about the Python-checkins mailing list