To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86251





------- Additional comments from [EMAIL PROTECTED] Tue Mar 11 21:35:43 +0000 
2008 -------
Hi,

ok, this is a bug/feature in python itself, see

http://bugs.python.org/issue790000

and fixed for python 2.4. The os.access function does not do the correct
conversions for unicode strings. Thus the correct fix is to replace

os.access( path, os.F_OK)

with 

os.access( path.encode(sys.getfilesystemencoding()), os.F_OK))

. Additionally there are problems with the compile function. Attaching a patch
for pythonscript.py (still need to verify this on windows though).

Joerg

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to