Message6032

Author pjenvey
Recipients gdoutch, pjenvey
Date 2010-09-02.17:12:22
SpamBayes Score 0.0
Marked as misclassified No
Message-id <1283447543.87.0.639435928126.issue1651@psf.upfronthosting.co.za>
In-reply-to
Content
This is related to #1369. This should be fixed in 2.5.2b1, as most of the stat implementation (which isfile relies on) was rewritten. Reopen this ticket if you can still reproduce it on 2.5.2, but I can't on OSX

Jython 2.5.2b1 (trunk:7095M, Sep 1 2010, 22:35:18) 
[Java HotSpot(TM) 64-Bit Server VM (Apple Inc.)] on java1.6.0_17
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.path.isfile(None)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/Users/pjenvey/src/java/jython/dist/Lib/posixpath.py", line 208, in isfile
    st = os.stat(path)
  File "/Users/pjenvey/src/java/jython/dist/Lib/posixpath.py", line 208, in isfile
    st = os.stat(path)
TypeError: coercing to Unicode: need string or buffer, NoneType found
History
Date User Action Args
2010-09-02 17:12:23pjenveysetmessageid: <1283447543.87.0.639435928126.issue1651@psf.upfronthosting.co.za>
2010-09-02 17:12:23pjenveysetrecipients: + pjenvey, gdoutch
2010-09-02 17:12:23pjenveylinkissue1651 messages
2010-09-02 17:12:22pjenveycreate