I have a models.py module that I thought I would test pydoc on. So I
try.....


$ python manage.py shell
Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> from mysite.models import *
>>> help(Merchant)
Help on class Merchant in module mysite.models:

Merchant = <class 'src.mysite.models.Merchant'>



but this isn't the doc string I have for this class at all and isn't
what you normally get from pydoc. I try a few more of the classes with
the same result. So I copy one of those classes to a new class in the
same module (just adding the number 2 to the name) and it works
perfectly for that class. Obviously something somewhere else is
different but what?


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to