On Jun 28, 12:31 am, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Wed, 2007-06-27 at 18:58 -0700, dailer wrote: > > 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'> > > Looks like this is the default result for Model subclasses. Possibly > related to the way we create them (using a metaclass). Feel free to work > out a patch in django/db/models/base.py (in the ModelBase class, > probably) if you want to fix this. It would probably be useful. > > Otherwise, might be worth opening a ticket in case somebody else is > looking for something to do. > > > 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? > > Given the complete lack of example code you've provided, we have no way > of telling. > > Regards, > Malcolm > > -- > Despite the cost of living, have you noticed how popular it > remains?http://www.pointy-stick.com/blog/ the only reason I didn't provide an example is that it seemed pointless given that you can copy the exact text of a class and change one character of the class name and that class works. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---