Changes between Version 186 and Version 187 of BackwardsIncompatibleChanges
- Timestamp:
- Jul 18, 2008, 8:42:31 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackwardsIncompatibleChanges
v186 v187 66 66 * [7952] July 18, 2008 [#Genericviewsusenewforms Create/update generic views use newforms] 67 67 * [7967] July 18, 2008 [#Mergednewforms-adminintotrunk Merged newforms-admin into trunk] 68 * [7971] July 18, 2007 [#Movednewformstoforms Moved django.newforms to django.forms] 68 69 69 70 == Database constraint names changed == … … 909 910 }}} 910 911 912 == Moved newforms to forms == 913 914 In [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.