Re: Problem with Help when using numarray

2005-09-16 Thread Colin J. Williams
Fredrik Lundh wrote: > Colin J. Williams wrote: > > >>With numarray, help gives unhelpful responses: >> >>import numarray.numarraycore as _n >>c= _n.array((1, 2)) >>print 'rank Value:', c.rank >>print 'c.rank Help:', help(c.rank) > > > c.rank returns a Python integer object. Fredrik, Thanks to

Re: Problem with Help when using numarray

2005-09-16 Thread Fredrik Lundh
Colin J. Williams wrote: > With numarray, help gives unhelpful responses: > > import numarray.numarraycore as _n > c= _n.array((1, 2)) > print 'rank Value:', c.rank > print 'c.rank Help:', help(c.rank) c.rank returns a Python integer object. if you pass in an object to help(), help figures out w

Re: Problem with Help when using numarray

2005-09-16 Thread Robert Kern
Colin J. Williams wrote: > Python advertises some basic service: > > C:\Python24>python > Python 2.4.1 (#65, Mar 30 2005, 09:13:57) [MSC v.1310 32 bit (Intel)] on > win32 > Type "help", "copyright", "credits" or "license" for more information. > >>> > > With numarray, help gives unhelpful respo

Problem with Help when using numarray

2005-09-16 Thread Colin J. Williams
Python advertises some basic service: C:\Python24>python Python 2.4.1 (#65, Mar 30 2005, 09:13:57) [MSC v.1310 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> With numarray, help gives unhelpful responses: import numarray.numarraycore as _n c