makepy crashing

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • markscottwright@gmail.com

    #1

    makepy crashing

    Has anyone sucessfully run makepy and Microsoft Word Object Library
    (9.0)? Mine crashes under XP Pro and Python 2.4.

    It only seems to be word that has the problem, though.

    I get a dialog that says that pythonwin.exe has crashed:
    AppName: pythonwin.exe AppVer: 0.0.0.0 ModName: ntdll.dll
    ModVer: 5.1.2600.1217 Offset: 000096f9

  • Roger Upole

    #2
    Re: makepy crashing

    Looks like the makepy step creates the generated file successfully,
    but python is choking with an assertion failure on lines longer than
    512 when it tries to import it.

    This is the line it was processing when it died:
    def GetSpellingSugg estions(self, Word=defaultNam edNotOptArg,
    CustomDictionar y=defaultNamedO ptArg, IgnoreUppercase =defaultNamedOp tArg,
    MainDictionary= defaultNamedOpt Arg, SuggestionMode= defaultNamedOpt Arg,
    CustomDictionar y2=defaultNamed OptArg, CustomDictionar y3=defaultNamed OptArg,
    CustomDictionar y4=defaultNamed OptArg, CustomDictionar y5=defaultNamed OptArg,
    CustomDictionar y6=defaultNamed OptArg, CustomDictionar y7=defaultNamed OptArg,
    CustomDictionar y8=defaultNamed OptArg, CustomDictionar y9=defaultNamed OptArg,
    CustomDictionar y10=defaultName dOptArg):

    You might be able to do a workaround by hacking genpy.py and replacing the
    default....Arg names with something shorter.
    ....Nope, there are a few other lines that exceed 512.

    I think it's a problem with the encoding. If you remove the mbcs tag
    (# -*- coding: mbcs -*-) from the top of the generated file, the import
    succeeds.

    Roger


    <markscottwrigh t@gmail.com> wrote in message
    news:1106068266 .402828.301030@ f14g2000cwb.goo glegroups.com.. .[color=blue]
    > Has anyone sucessfully run makepy and Microsoft Word Object Library
    > (9.0)? Mine crashes under XP Pro and Python 2.4.
    >
    > It only seems to be word that has the problem, though.
    >
    > I get a dialog that says that pythonwin.exe has crashed:
    > AppName: pythonwin.exe AppVer: 0.0.0.0 ModName: ntdll.dll
    > ModVer: 5.1.2600.1217 Offset: 000096f9
    >[/color]





    ----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
    http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
    ---= East/West-Coast Server Farms - Total Privacy via Encryption =---

    Comment

    Working...