Python 3000 C API Changes

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • rahul

    Python 3000 C API Changes

    I am trying to find out what Python C APIs are changing from Python
    2.5 to Python 3.0 but there does not seem to be a single list of
    changes (or at least google is not finding one).
    If someone knows about where I should look, please let me know.
  • Benjamin

    #2
    Re: Python 3000 C API Changes

    On Aug 23, 10:34 am, rahul <whyc...@gmail. comwrote:
    I am trying to find out what Python C APIs are changing from Python
    2.5 to Python 3.0 but there does not seem to be a single list of
    changes (or at least google is not finding one).
    If someone knows about where I should look, please let me know.
    Yes, this is a bit of a problem at the moment. You could look at the
    3.0 NEWS file: http://svn.python.org/view/python/br...WS?view=markup.

    Comment

    • Stefan Behnel

      #3
      Re: Python 3000 C API Changes

      rahul wrote:
      I am trying to find out what Python C APIs are changing from Python
      2.5 to Python 3.0 but there does not seem to be a single list of
      changes (or at least google is not finding one).
      If someone knows about where I should look, please let me know.
      Check out what Cython does in its module header, method
      "generate_modul e_preamble". It has an (obviously incomplete) list of the most
      important adaptations to write portable code for Py2.3 to 3.0.



      Stefan

      Comment

      Working...