From c8f0ec4d64a4c6d2ed25515dbb8270461c06726a 2008-07-15 08:09:57 From: Fernando Perez Date: 2008-07-15 08:09:57 Subject: [PATCH] Remove failing doctest, need full one once we hve daemon code in place --- diff --git a/IPython/kernel/multiengineclient.py b/IPython/kernel/multiengineclient.py index 1200f2a..1cee1bc 100644 --- a/IPython/kernel/multiengineclient.py +++ b/IPython/kernel/multiengineclient.py @@ -312,13 +312,6 @@ class InteractiveMultiEngineClient(object): A Python string that names a callable defined on the engines. :Returns: A `ParallelFunction` object. - - Examples - ======== - - >>> psin = rc.parallelize('all','lambda x:sin(x)') - >>> psin(range(10000)) - [0,2,4,9,25,36,...] """ targets, block = self._findTargetsAndBlock(targets, block) return ParallelFunction(func, self, targets, block)