On 5/30/07, Rand Bradley <[EMAIL PROTECTED]> wrote: > > File "C:\Python25\lib\doctest.py", line 2269, in DocTestSuite > suite.addTest(DocTestCase(test, **options)) > TypeError: __init__() got an unexpected keyword argument 'runner' > > Does anyone have any ideas? Have I discovered a strange Django or > Python bug?
Looks like a Django bug. Django ships with a (slightly modified) doctest module; your traceback indicates that your test is using the Python native doctest, rather than the Django version. For some reason, the doctest in django.contrib.sessions.tests is messing up the import process. Log a ticket; I'll look into it. Yours, Russ Magee %-) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---

