Changes between Version 186 and Version 187 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Jul 18, 2008, 8:42:31 PM (16 years ago)
Author:
Jacob
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v186 v187  
    6666 * [7952] July 18, 2008 [#Genericviewsusenewforms Create/update generic views use newforms]
    6767 * [7967] July 18, 2008 [#Mergednewforms-adminintotrunk Merged newforms-admin into trunk]
     68 * [7971] July 18, 2007 [#Movednewformstoforms Moved django.newforms to django.forms]
    6869
    6970== Database constraint names changed ==
     
    909910}}}
    910911
     912== Moved newforms to forms ==
     913
     914In [7971] Django's {{{newforms}}} library was finally renamed to just plain old {{{forms}}}. Imports of {{{django.newforms}}} will still work but will throw a {{{DeprecationWarning}}}. Deeper imports throw {{{ImportError}}}s. In general, you'll just need to change {{{from django import newforms as forms}}} to {{{from django import forms}}}.
     915
     916{{{django.oldforms}}} is still available, but really you shouldn't be using it.
Back to Top