<div dir="ltr">Right.</div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Apr 16, 2015 at 6:44 PM, Nathaniel Smith <span dir="ltr"><<a href="mailto:njs@pobox.com" target="_blank">njs@pobox.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Thu, Apr 16, 2015 at 6:37 PM, Neil Girdhar <<a href="mailto:mistersheik@gmail.com">mistersheik@gmail.com</a>> wrote:<br>
> I can always put np.outer = np.multiply.outer at the start of my code to get<br>
> what I want.  Or could that break things?<br>
<br>
</span>Please don't do this. It means that there are any calls to np.outer in<br>
libraries you are using (or other libraries that are also used by<br>
anyone who is using your code), they will silently get<br>
np.multiply.outer instead of np.outer. And then if this breaks things<br>
we end up getting extremely confusing bug reports from angry users who<br>
think we broke np.outer.<br>
<br>
Just do 'outer = np.multiply.outer' and leave the np namespace alone :-)<br>
<span class="im HOEnZb"><br>
-n<br>
<br>
--<br>
Nathaniel J. Smith -- <a href="http://vorpus.org" target="_blank">http://vorpus.org</a><br>
</span><div class="HOEnZb"><div class="h5">_______________________________________________<br>
NumPy-Discussion mailing list<br>
<a href="mailto:NumPy-Discussion@scipy.org">NumPy-Discussion@scipy.org</a><br>
<a href="http://mail.scipy.org/mailman/listinfo/numpy-discussion" target="_blank">http://mail.scipy.org/mailman/listinfo/numpy-discussion</a><br>
</div></div></blockquote></div><br></div>