Menu

#83 pywin32 for PyPy

open
nobody
None
5
2015-09-14
2011-03-25
No

I've just managed to make pywin32 compile and work on top of PyPy.
I open this ticket to keep track of the various changes that I made to the pywin32 source code.
I'm currently preparing patches; for the moment, changes are of two kinds:

- In some .cpp files you can find "if PyString_Check(xxx)" without surrounding parentheses. This works on CPython because PyString_Check is actually a macro which adds parentheses to its expression; with PyPy PyString_Check is a function.

- With PyPy it's not allowed to change ob_type after object creation. This is used a lot by all PyIBase subclasses. The solution I found is to pass the TypeObject to the base constructor, and ensure that ob_type is set just before calling _Py_NewReference(). Of course these two lines can be replaced by "PyObject_Init(this, type);"

Discussion

  • Mark Hammond

    Mark Hammond - 2011-03-26

    Sounds great to me. Use of PyObject_Init sounds good too so long as it also works in earlier Python version (I seem to recall that function was added in later versions).

     
  • Amaury Forgeot d'Arc

    PyObject_Init is already present in Python2.2

     
  • Thibault Hild

    Thibault Hild - 2012-06-21

    What is the current status of pypy compatibility ?
    Is the work done by Amaury on https://bitbucket.org/amauryfa/pywin32-pypy going to be merged back in the pywin32 project ?

     
  • Matti Picus

    Matti Picus - 2012-07-18

    How can I help get this merged into default pywin32 ?

     
  • Mark Hammond

    Mark Hammond - 2012-07-18

    I guess you could contact Amaury and see if he needs any help to get patches together for review - from my POV, I'm just waiting for those patches.

     
  • mabel

    mabel - 2015-09-14

    Can you please share how to install pywin32 for pypy? Here is the screen shot of error message.
    I appreciate your help

     
    • Amaury Forgeot d'Arc

      Hi,
      Sorry I don't have any Windows machine anymore. But from the messages it seems that you did not install the Microsoft Windows SDK.

       

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.