@@ -238,7 +238,8 @@ def registerFunction(self, name, func, argnames):
238238 return self .registerBuilder (name , opbuilder )
239239
240240 def registerBuilder (self , name , builder ):
241- """Register builder in this module so it can be used in makeEquation.
241+ """Register builder in this module so it can be used in
242+ makeEquation.
242243
243244 If an extant builder with the given name is already registered,
244245 this will replace all instances of the old builder's literal in
@@ -282,7 +283,8 @@ def deRegisterBuilder(self, name):
282283 return
283284
284285 def wipeout (self , eq ):
285- """Invalidate the specified equation and remove it from the factory.
286+ """Invalidate the specified equation and remove it from the
287+ factory.
286288
287289 This will remove the equation from the purview of the factory
288290 and also change its formula to return NaN. This ensures that eq
@@ -576,7 +578,8 @@ class ArgumentBuilder(BaseBuilder):
576578 """
577579
578580 def __init__ (self , value = None , name = None , const = False , arg = None ):
579- """Create an ArgumentBuilder instance, containing a new Argument.
581+ """Create an ArgumentBuilder instance, containing a new
582+ Argument.
580583
581584 Parameters
582585 ----------
@@ -732,8 +735,8 @@ def getBuilder(name):
732735
733736
734737def __wrap_numpy_operators ():
735- """Export all numpy operators as OperatorBuilder instances in the module
736- namespace."""
738+ """Export all numpy operators as OperatorBuilder instances in the
739+ module namespace."""
737740 for name in dir (numpy ):
738741 op = getattr (numpy , name )
739742 if isinstance (op , numpy .ufunc ):
0 commit comments