<div dir="ltr">Hi all!<br><br>I&#39;m beginer in python-win32 and i try a simple example which is described in &quot;Python for Win32 Extensions Help&quot;:<br><br>import win32com.client<br>o = win32com.client.Dispatch(&quot;<div dir="ltr">
Excel.Application&quot;)<br>
o.Visible = 1<br>o.Workbooks.Add() # for office 97 – 95 a bit different!<br>o.Cells(1,1).Value = &quot;Hello&quot;<br><br>But this example falls with traceback:<br><br>&nbsp; File &quot;D:\Python25\pyprojects\pyexample\pyexample.py&quot;, line 6, in &lt;module&gt;<br>

&nbsp;&nbsp;&nbsp; o.Workbooks.Add() # for office 97 – 95 a bit different!<br>&nbsp; File &quot;D:\Python25\Lib\site-packages\win32com\client\dynamic.py&quot;, line 467, in __getattr__<br>&nbsp;&nbsp;&nbsp; if self._olerepr_.mapFuncs.has_key(attr): return self._make_method_(attr)<br>

&nbsp; File &quot;D:\Python25\Lib\site-packages\win32com\client\dynamic.py&quot;, line 295, in _make_method_<br>&nbsp;&nbsp;&nbsp; methodCodeList = self._olerepr_.MakeFuncMethod(self._olerepr_.mapFuncs[name], methodName,0)<br>&nbsp; File &quot;D:\Python25\Lib\site-packages\win32com\client\build.py&quot;, line 297, in MakeFuncMethod<br>

&nbsp;&nbsp;&nbsp; return self.MakeDispatchFuncMethod(entry, name, bMakeClass)<br>&nbsp; File &quot;D:\Python25\Lib\site-packages\win32com\client\build.py&quot;, line 318, in MakeDispatchFuncMethod<br>&nbsp;&nbsp;&nbsp;
s = linePrefix + &#39;def &#39; + name + &#39;(self&#39; + BuildCallList(fdesc, names,
defNamedOptArg, defNamedNotOptArg, defUnnamedArg, defOutArg) + &#39;):&#39;<br>
&nbsp; File &quot;D:\Python25\Lib\site-packages\win32com\client\build.py&quot;, line 604, in BuildCallList<br>&nbsp;&nbsp;&nbsp; argName = MakePublicAttributeName(argName)<br>&nbsp; File &quot;D:\Python25\Lib\site-packages\win32com\client\build.py&quot;, line 542, in MakePublicAttributeName<br>

&nbsp;&nbsp;&nbsp; return filter( lambda char: char in valid_identifier_chars, className)<br>&nbsp; File &quot;D:\Python25\Lib\site-packages\win32com\client\build.py&quot;, line 542, in &lt;lambda&gt;<br>&nbsp;&nbsp;&nbsp; return filter( lambda char: char in valid_identifier_chars, className)<br>

UnicodeDecodeError: &#39;ascii&#39; codec can&#39;t decode byte 0x80 in position 52: ordinal not in range(128)<br><br>Is
it bug or may be i should set some settings to make it works? I use
WinXP and MS Office 2003. Python-win32 has been intalled on my PC with
pywin32-211.win32-py2.5.exe installer.</div></div>