[Python-ideas] Re: Tracebacks for C code in Python

2020-08-16 Thread Steve Barnes
Ram, If you install pandas from source, (https://github.com/pandas-dev/pandas#installation-from-sources) then there is a reasonable chance that you will be able to tie the error messages to the source code. If you are finding that the error messages are not clear then I would encourage you to

[Python-ideas] Re: Tracebacks for C code in Python

2020-08-16 Thread Stefan Behnel
Ram Rachum schrieb am 15.08.20 um 21:08: > Here's something that's been bugging me for years. I'll suggest something, > but since I'm a total newbie about this area, it's possible that everything > I'm saying is impossible or doesn't make sense. > > I'm working with some Pandas code now, and there

[Python-ideas] Re: Tracebacks for C code in Python

2020-08-16 Thread Ram Rachum
Thanks for the responses everyone. On Sun, Aug 16, 2020 at 9:43 AM Marco Sulla wrote: > You probably wants also the python extension for gdb, to go faster to > the interesting code: > https://stackoverflow.com/q/41160447/1763602 > ___ > Python-ideas ma

[Python-ideas] Re: Tracebacks for C code in Python

2020-08-15 Thread Marco Sulla
You probably wants also the python extension for gdb, to go faster to the interesting code: https://stackoverflow.com/q/41160447/1763602 ___ Python-ideas mailing list -- python-ideas@python.org To unsubscribe send an email to python-ideas-le...@python.org

[Python-ideas] Re: Tracebacks for C code in Python

2020-08-15 Thread Barry
> On 15 Aug 2020, at 20:15, Ram Rachum wrote: > >  > Here's something that's been bugging me for years. I'll suggest something, > but since I'm a total newbie about this area, it's possible that everything > I'm saying is impossible or doesn't make sense. > > I'm working with some Pandas co

[Python-ideas] Re: Tracebacks for C code in Python

2020-08-15 Thread William Pickard
At most, Python would only be able to tell you the Python name of the function it invoked. Traceback for native code is a different can of worms, especially since native code can be distributed without debugging symbols, ESPECIALLY ON WINDOWS. If you ever look at a processed native dump file fo