Hi there,

Working on #13580 I'm getting a plugins.startup_modules failure. I don't
understand why, knowing that:

- the goal of this patch is to I create a new file namely
  sage/parallel/map_reduce.py whose main entry is the class RESetMapReduce.

- I'm *not importing* RESetMapReduce at Sage's top level.

- except for advanced use, it is supposed to be used through the
  map_reduce method of the class RecursivelyEnumeratedSets.

- it is lazily imported when called this method. More precisely the code is:

    def map_reduce(self, [...]):
        r"""
        Apply a Map/Reduce algorithm on ``self``

        [...]
        """
        import sage.parallel.map_reduce
        return sage.parallel.map_reduce.RESetMapReduce(
            forest = self,
            map_function = map_function,
            reduce_function = reduce_function,
            reduce_init = reduce_init).run()

So I'm not changing anything at Sage's startup, do I ?

What should I do to please the patchbot ?

Cheers,

Florent

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to