Changes between Version 217 and Version 218 of BackwardsIncompatibleChanges
- Timestamp:
- Aug 7, 2008, 8:48:28 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackwardsIncompatibleChanges
v217 v218 1100 1100 [8223] refactored signals and {{{django.dispatch}}} with an eye towards speed. The net result was up to a 90% improvement in the speed of signal handling, but along the way some backwards-incompatible changes were made: 1101 1101 1102 * All signals now must be declared as accepting {{{**kwargs}}}.1102 * All handlers now must be declared as accepting {{{**kwargs}}}. 1103 1103 * Signals are now instances of {{{django.dispatch.Signal}}} instead of anonymous objects. 1104 1104 * Connecting, disconnecting, and sending signals are done via methods on the {{{Signal}}} object instead of through module methods in {{{django.dispatch.dispatcher}}}. The module-level methods are deprecated.