Re: Really dumb question re output variable for debugging

2009-02-11 Thread phoebebright
Got Pdb working (though still want to get django_extensions going) and here is my problem again - how do I display an object. It's fine if I know what the attribute are, but how do I tell?? > /Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/django/db/models/field

Re: Really dumb question re output variable for debugging

2009-02-11 Thread phoebebright
OK. Installed django extentions and can see the extra commands when I type python manage.py help but there seems no difference in the traceback screen? Have tried putting both django_extensions and just extensions in the INSTALLED_APPS area, and installed Werkzeug and watched Eric's excellant In

Re: Really dumb question re output variable for debugging

2009-02-11 Thread Lee Braiden
2009/2/11 Karen Tracey : > On Wed, Feb 11, 2009 at 3:01 PM, phoebebright > wrote: >> >> I need to see the contents of some objects that are passed as >> parameters into a function.  I can stop the function (assert false) >> and look at the traceback, but it doesn't tell me the contents of the >>

Re: Really dumb question re output variable for debugging

2009-02-11 Thread Karen Tracey
On Wed, Feb 11, 2009 at 3:01 PM, phoebebright wrote: > > I need to see the contents of some objects that are passed as > parameters into a function. I can stop the function (assert false) > and look at the traceback, but it doesn't tell me the contents of the > objects. I have tried print statem

Really dumb question re output variable for debugging

2009-02-11 Thread phoebebright
I need to see the contents of some objects that are passed as parameters into a function. I can stop the function (assert false) and look at the traceback, but it doesn't tell me the contents of the objects. I have tried print statemnts, pickle and pprint. I don't want to stray into the methods