can't find python2.4 source code

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

    can't find python2.4 source code

    I make program in c++ embedding python2.4 in windows, I need the
    python24_d.lib to link with the debug version of my program, but i can't
    find the source code to build python24_d.lib on the internet, I even can't
    find python24_d.lib/python24_d.dll on the internet.
    Does the python24 source code released?


  • Fredrik Lundh

    #2
    Re: can't find python2.4 source code

    Donnie Leen <Kingdom.lin@ye ah.net> wrote:
    [color=blue]
    >I make program in c++ embedding python2.4 in windows, I need the
    > python24_d.lib to link with the debug version of my program, but i can't
    > find the source code to build python24_d.lib on the internet, I even can't
    > find python24_d.lib/python24_d.dll on the internet.
    > Does the python24 source code released?[/color]

    The official home of the Python Programming Language


    look for "Download the release" and the links to Python-2.4.tgz or
    Python-2.4.tar.bz2.

    </F>



    Comment

    • Donnie Leen

      #3
      Re: can't find python2.4 source code

      I had tried already, the doesn't contain the sourcecode.
      In python2.3.3, the release pakage contained sourcecode is Python-2.3.3.tar.


      "Fredrik Lundh" <fredrik@python ware.com> wrote in message
      news:mailman.75 86.1102925032.5 135.python-list@python.org ...[color=blue]
      > Donnie Leen <Kingdom.lin@ye ah.net> wrote:
      >[color=green]
      > >I make program in c++ embedding python2.4 in windows, I need the
      > > python24_d.lib to link with the debug version of my program, but i can't
      > > find the source code to build python24_d.lib on the internet, I even[/color][/color]
      can't[color=blue][color=green]
      > > find python24_d.lib/python24_d.dll on the internet.
      > > Does the python24 source code released?[/color]
      >
      > http://www.python.org/2.4/
      >
      > look for "Download the release" and the links to Python-2.4.tgz or
      > Python-2.4.tar.bz2.
      >
      > </F>
      >
      >
      >[/color]




      Comment

      • Nick Coghlan

        #4
        Re: can't find python2.4 source code

        Donnie Leen wrote:[color=blue]
        > I make program in c++ embedding python2.4 in windows, I need the
        > python24_d.lib to link with the debug version of my program, but i can't
        > find the source code to build python24_d.lib on the internet, I even can't
        > find python24_d.lib/python24_d.dll on the internet.
        > Does the python24 source code released?[/color]

        Download Python for free. The Python programming language, an object-oriented scripting and rapid application development language. You can download it from http://www.python.org/download


        Which is linked from www.python.org

        However, as Fredrik said, the source tarballs are available on the release page
        for 2.4 (and yes, they do contain the source code).

        Cheers,
        Nick.

        --
        Nick Coghlan | ncoghlan@email. com | Brisbane, Australia
        ---------------------------------------------------------------

        Comment

        • Steve Holden

          #5
          Re: can't find python2.4 source code

          Donnie Leen wrote:
          [color=blue]
          > I had tried already, the doesn't contain the sourcecode.
          > In python2.3.3, the release pakage contained sourcecode is Python-2.3.3.tar.
          >[/color]
          Rhubarb. All you had to do was follow Fredrik's instructions.

          Since they didn't appear to be explicit enough for you, search in the
          page he names for the string """All others should download either
          Python-2.4.tgz or Python-2.4.tar.bz2, the source archive.""". The
          filenames are links to two different versions of the source.

          regards
          Steve
          [color=blue]
          >
          > "Fredrik Lundh" <fredrik@python ware.com> wrote in message
          > news:mailman.75 86.1102925032.5 135.python-list@python.org ...
          >[color=green]
          >>Donnie Leen <Kingdom.lin@ye ah.net> wrote:
          >>
          >>[color=darkred]
          >>>I make program in c++ embedding python2.4 in windows, I need the
          >>>python24_d.l ib to link with the debug version of my program, but i can't
          >>>find the source code to build python24_d.lib on the internet, I even[/color][/color]
          >
          > can't
          >[color=green][color=darkred]
          >>>find python24_d.lib/python24_d.dll on the internet.
          >>>Does the python24 source code released?[/color]
          >>
          >>http://www.python.org/2.4/
          >>
          >>look for "Download the release" and the links to Python-2.4.tgz or
          >>Python-2.4.tar.bz2.
          >>
          >></F>
          >>
          >>
          >>[/color]
          >
          >
          >
          >[/color]


          --


          Holden Web LLC +1 800 494 3119

          Comment

          • Fredrik Lundh

            #6
            Re: can't find python2.4 source code

            Donnie Leen wrote:[color=blue]
            >I had tried already, the doesn't contain the sourcecode.
            > In python2.3.3, the release pakage contained sourcecode is Python-2.3.3.tar.[/color]

            the 2.3.3 sources (http://www.python.org/2.3.3/) are shipped as
            Python-2.3.3.tgz and Python-2.3.3.tar.bz2.

            the 2.4 sources (http://www.python.org/2.4) are shipped as
            Python-2.4.tgz and Python-2.4.tar.bz2.

            use gunzip (or bunzip2) to convert the compressed archives to
            a standard tarball. (if you're on windows, any recent WinZip
            or WinZip-clone should be able to do that for you)

            </F>



            Comment

            Working...