[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

python24 symbol file...pyhon24.pdb

over

1/23/2008 7:05:00 AM

I've seen a few references on the net to a python24.pdb file. I assume
it's a symbol file along the lines of the pdb files issued by
microsoft for their products. Maybe I'm wrong.

Has anyone seen such an animal?

Also, is there source code available for python24 for Windoze? I have
seen reference to source code but not in a package for Windows.

thanks


6 Answers

Christian Heimes

1/23/2008 7:54:00 AM

0

over@thepond.com wrote:
> I've seen a few references on the net to a python24.pdb file. I assume
> it's a symbol file along the lines of the pdb files issued by
> microsoft for their products. Maybe I'm wrong.

..pdb files (program database) are created by MS' compiler, see
http://en.wikipedia.org/wiki/Progra.... Python doesn't ship the
files. You have to compile Python yourself to get the pdb files.

Christian

Gabriel Genellina

1/23/2008 8:12:00 AM

0

En Wed, 23 Jan 2008 05:04:35 -0200, <over@thepond.com> escribió:

> I've seen a few references on the net to a python24.pdb file. I assume
> it's a symbol file along the lines of the pdb files issued by
> microsoft for their products. Maybe I'm wrong.
>
> Has anyone seen such an animal?

I don't get why you care so much about that file. It's useful to debug a
crash in python.exe, but I can't see any other useful purpose (if you only
have the python executable and the .pdb available).

> Also, is there source code available for python24 for Windoze? I have
> seen reference to source code but not in a package for Windows.

There is a single source package shared by all platforms. You can download
and compile it, and you'll get your own version of python.pdb if you like.

--
Gabriel Genellina

Martin v. Loewis

1/23/2008 9:19:00 AM

0

> Also, is there source code available for python24 for Windoze? I have
> seen reference to source code but not in a package for Windows.

It's available from

http://www.python.org/ftp/python/2.4/Pyth...

Regards,
Martin

over

1/23/2008 6:39:00 PM

0

On Wed, 23 Jan 2008 08:54:19 +0100, Christian Heimes
<lists@cheimes.de> wrote:

>over@thepond.com wrote:
>> I've seen a few references on the net to a python24.pdb file. I assume
>> it's a symbol file along the lines of the pdb files issued by
>> microsoft for their products. Maybe I'm wrong.
>
>.pdb files (program database) are created by MS' compiler, see
>http://en.wikipedia.org/wiki/Progra.... Python doesn't ship the
>files. You have to compile Python yourself to get the pdb files.
>
>Christian

thanks

over

1/23/2008 6:47:00 PM

0


>I don't get why you care so much about that file. It's useful to debug a
>crash in python.exe, but I can't see any other useful purpose (if you only
>have the python executable and the .pdb available).

I'm trying to use Paimei, the Python-based debugger put out by Pedram
Amini. I can get Paimei to run certain apps, like Notepad, but it gets
hung up on other apps that are more complex. I'm trying to find the
bottleneck, so to speak, on apps that fail, so I'm using a Windows
debugger to follow the Paimei app as it is interpretted by python. It
is very helpful when tracing assembler code to have symbols available
in the disassembly of the debugger.

So far, I can follow the code from the Paimei wxPython windows into
pythonw and python. It was difficult due to the lack of signposts.
With a pdb symbol file loaded, the disassembly has names on the
functions, like kernel32, etc.

>
>> Also, is there source code available for python24 for Windoze? I have
>> seen reference to source code but not in a package for Windows.
>
>There is a single source package shared by all platforms. You can download
>and compile it, and you'll get your own version of python.pdb if you like.

thanks for the info.

over

1/23/2008 6:48:00 PM

0

On Wed, 23 Jan 2008 10:19:28 +0100, "Martin v. Löwis"
<martin@v.loewis.de> wrote:

>> Also, is there source code available for python24 for Windoze? I have
>> seen reference to source code but not in a package for Windows.
>
>It's available from
>
>http://www.python.org/ftp/python/2.4/Pyth...
>
>Regards,
>Martin

thanks you kindly.