mailr16037 - /branches/uf_redesign/user_functions/pipe.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on May 07, 2012 - 11:39:
Author: bugman
Date: Mon May  7 11:39:54 2012
New Revision: 16037

URL: http://svn.gna.org/viewcvs/relax?rev=16037&view=rev
Log:
Removed all the default values of None, as that is the default of the default 
variable!


Modified:
    branches/uf_redesign/user_functions/pipe.py

Modified: branches/uf_redesign/user_functions/pipe.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/uf_redesign/user_functions/pipe.py?rev=16037&r1=16036&r2=16037&view=diff
==============================================================================
--- branches/uf_redesign/user_functions/pipe.py (original)
+++ branches/uf_redesign/user_functions/pipe.py Mon May  7 11:39:54 2012
@@ -43,7 +43,6 @@
 uf.title_short = "Data pipe copying."
 uf.add_keyarg(
     name = "pipe_from",
-    default = None,
     py_type = "str",
     desc_short = "source data pipe",
     desc = "The name of the source data pipe to copy the data from.",
@@ -54,7 +53,6 @@
 )
 uf.add_keyarg(
     name = "pipe_to",
-    default = None,
     py_type = "str",
     desc_short = "destination data pipe",
     desc = "The name of the target data pipe to copy the data to.",
@@ -85,14 +83,12 @@
 uf.title_short = "Data pipe creation."
 uf.add_keyarg(
     name = "pipe_name",
-    default = None,
     py_type = "str",
     desc_short = "data pipe name",
     desc = "The name of the data pipe.",
 )
 uf.add_keyarg(
     name = "pipe_type",
-    default = None,
     py_type = "str",
     desc_short = "type of data pipe",
     desc = "The type of data pipe.",
@@ -146,7 +142,6 @@
 uf.title_short = "Data pipe deletion."
 uf.add_keyarg(
     name = "pipe_name",
-    default = None,
     py_type = "str",
     desc_short = "data pipe",
     desc = "The name of the data pipe to delete.",
@@ -184,14 +179,12 @@
 uf.title_short = "Hybrid data pipe creation."
 uf.add_keyarg(
     name = "hybrid",
-    default = None,
     py_type = "str",
     desc_short = "hybrid pipe name",
     desc = "The name of the hybrid data pipe to create."
 )
 uf.add_keyarg(
     name = "pipes",
-    default = None,
     py_type = "str_list",
     desc_short = "data pipes to hybridise",
     desc = "An array containing the names of all data pipes to hybridise.",
@@ -224,7 +217,6 @@
 uf.title_short = "Data pipe switching."
 uf.add_keyarg(
     name = "pipe_name",
-    default = None,
     py_type = "str",
     desc_short = "data pipe",
     desc = "The name of the data pipe.",




Related Messages


Powered by MHonArc, Updated Mon May 07 12:00:01 2012