Message6031

Author gdoutch
Recipients gdoutch
Date 2010-09-02.09:37:00
SpamBayes Score 2.7426394e-12
Marked as misclassified No
Message-id <1283420223.09.0.103489660935.issue1651@psf.upfronthosting.co.za>
In-reply-to
Content
On jython 2.5.1, JRE 6.0_16-b01, Windows i386:

>>> import os
>>> os.path.isfile(None)
#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x77c47bc4, pid=8908, tid=13396

#
# JRE version: 6.0_16-b01
# Java VM: Java HotSpot(TM) Client VM (14.2-b01 mixed mode, sharing windows-x86
)
# Problematic frame:
# C  [msvcrt.dll+0x37bc4]
#
# An error report file with more information is saved as:
# C:\WINDOWS\hs_err_pid8908.log
#
# If you would like to submit a bug report, please visit:
#   http://java.sun.com/webapps/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#


Python 2.7 (r27:82525, Jul  4 2010, 09:01:59) [MSC v.1500 32 bit (Intel)] on win
32
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 "C:\Python27\lib\genericpath.py", line 29, in isfile
    st = os.stat(path)
TypeError: coercing to Unicode: need string or buffer, NoneType found


(Python 2.5 does the same - tested on another machine).
History
Date User Action Args
2010-09-02 09:37:03gdoutchsetrecipients: + gdoutch
2010-09-02 09:37:03gdoutchsetmessageid: <1283420223.09.0.103489660935.issue1651@psf.upfronthosting.co.za>
2010-09-02 09:37:02gdoutchlinkissue1651 messages
2010-09-02 09:37:00gdoutchcreate