Message7282

Author fwierzbicki
Recipients fwierzbicki, malte.vesper
Date 2012-06-29.17:39:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1340991578.55.0.179585912047.issue1937@psf.upfronthosting.co.za>
In-reply-to
Content
Maybe I'm not understanding this one but:


Python 2.7.2+ (default, Oct  4 2011, 20:06:09) 
[GCC 4.6.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import posixpath
>>> posixpath.join(None, "foo")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/posixpath.py", line 68, in join
    elif path == '' or path.endswith('/'):
AttributeError: 'NoneType' object has no attribute 'endswith'
>>>
History
Date User Action Args
2012-06-29 17:39:38fwierzbickisetmessageid: <1340991578.55.0.179585912047.issue1937@psf.upfronthosting.co.za>
2012-06-29 17:39:38fwierzbickisetrecipients: + fwierzbicki, malte.vesper
2012-06-29 17:39:38fwierzbickilinkissue1937 messages
2012-06-29 17:39:38fwierzbickicreate