On 08/01/2014 19:52, Roy Smith wrote:
I'm working with ipython's pylab mode, which replaces the builtin sum() with 
the one from numpy:

In [105]:
sum

Out[105]:
<function numpy.core.fromnumeric.sum>

Is there any way to recover a reference to the builtin sum()?


---
Roy Smith
r...@panix.com


Grab it from here I suppose.

>>> help(__builtins__.sum)
Help on built-in function sum in module __builtin__:
...

--
My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language.

Mark Lawrence

--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to