Django

Code

Show
Ignore:
Timestamp:
07/18/08 20:22:26 (4 months ago)
Author:
jacob
Message:

Fixed #7741: django.newforms is now django.forms. This is obviously a backwards-incompatible change. There's a warning upon import of django.newforms itself, but deeper imports will raise errors.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/tests/regressiontests/forms/util.py

    r7294 r7971  
    11# coding: utf-8 
    22""" 
    3 Tests for newforms/util.py module. 
     3Tests for forms/util.py module. 
    44""" 
    55 
    66tests = r""" 
    7 >>> from django.newforms.util import * 
     7>>> from django.forms.util import * 
    88>>> from django.utils.translation import ugettext_lazy 
    99 
     
    1212########### 
    1313 
    14 >>> from django.newforms.util import flatatt 
     14>>> from django.forms.util import flatatt 
    1515>>> flatatt({'id': "header"}) 
    1616u' id="header"'