**********************************************************************
File "/home/akaihola/dl/prg/www/django/django/utils/text.py", line 17, in django.utils.text
Failed example:
    get_valid_filename("john's portrait in 2004.jpg")
Expected:
    'johns_portrait_in_2004.jpg'
Got:
    u'johns_portrait_in_2004.jpg'
**********************************************************************
File "/home/akaihola/dl/prg/www/django/django/utils/text.py", line 20, in django.utils.text
Failed example:
    get_text_list(['a', 'b', 'c', 'd'])
Expected:
    'a, b, c or d'
Got:
    u'a, b, c or d'
**********************************************************************
File "/home/akaihola/dl/prg/www/django/django/utils/text.py", line 22, in django.utils.text
Failed example:
    get_text_list(['a', 'b', 'c'], 'and')
Expected:
    'a, b and c'
Got:
    u'a, b and c'
**********************************************************************
File "/home/akaihola/dl/prg/www/django/django/utils/text.py", line 24, in django.utils.text
Failed example:
    get_text_list(['a', 'b'], 'and')
Expected:
    'a and b'
Got:
    u'a and b'
**********************************************************************
File "/home/akaihola/dl/prg/www/django/django/utils/text.py", line 26, in django.utils.text
Failed example:
    get_text_list(['a'])
Expected:
    'a'
Got:
    u'a'
**********************************************************************
File "/home/akaihola/dl/prg/www/django/django/utils/text.py", line 28, in django.utils.text
Failed example:
    get_text_list([])
Expected:
    ''
Got:
    u''
**********************************************************************
File "/home/akaihola/dl/prg/www/django/django/utils/text.py", line 36, in django.utils.text
Failed example:
    list(smart_split('This is "a person's" test.'))
Exception raised:
    Traceback (most recent call last):
      File "/usr/lib/python2.5/doctest.py", line 1228, in __run
        compileflags, 1) in test.globs
      File "<doctest django.utils.text[6]>", line 1
         list(smart_split('This is "a person's" test.'))
                                             ^
     SyntaxError: invalid syntax
**********************************************************************
1 items had failures:
   7 of   7 in django.utils.text
***Test Failed*** 7 failures.
