Message4720

Author r_walter
Recipients r_walter
Date 2009-05-26.20:57:02
SpamBayes Score 1.1957321e-09
Marked as misclassified No
Message-id <1243371424.21.0.523826212203.issue1357@psf.upfronthosting.co.za>
In-reply-to
Content
Below you see the output from an interactive session that followed the
instructions given by the jython interpreter. I would expect that typing
help() at the interpreter prompt would give me some help, instead of a
tracelog of a missing method/attribute on an object used in posixpath.py.

roland@dios:~> jython2.5
*sys-package-mgr*: processing new jar, '/usr/local/jython2.5rc3/jython.jar'
Jython 2.5rc3 (Release_2_5rc3:6384:6385, May 26 2009, 15:51:41)
[Java HotSpot(TM) Server VM (Sun Microsystems Inc.)] on java1.6.0_13
Type "help", "copyright", "credits" or "license" for more information.
>>> help
Type help() for interactive help, or help(object) for help about object.
>>> hellp()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'hellp' is not defined
>>> help()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/jython2.5rc3/Lib/site.py", line 348, in __call__
    import pydoc
  File "/usr/local/jython2.5rc3/Lib/pydoc.py", line 1812, in <module>
    help = Helper(sys.stdin, sys.stdout)
  File "/usr/local/jython2.5rc3/Lib/pydoc.py", line 1626, in __init__
    execdir = os.path.dirname(sys.executable)
  File "/usr/local/jython2.5rc3/Lib/posixpath.py", line 122, in dirname
    return split(p)[0]
  File "/usr/local/jython2.5rc3/Lib/posixpath.py", line 80, in split
    i = p.rfind('/') + 1
AttributeError: 'NoneType' object has no attribute 'rfind'
>>>
History
Date User Action Args
2009-05-26 20:57:04r_waltersetrecipients: + r_walter
2009-05-26 20:57:04r_waltersetmessageid: <1243371424.21.0.523826212203.issue1357@psf.upfronthosting.co.za>
2009-05-26 20:57:03r_walterlinkissue1357 messages
2009-05-26 20:57:03r_waltercreate