Changes between Version 217 and Version 218 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Aug 7, 2008, 8:48:28 AM (16 years ago)
Author:
Luke Plant
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v217 v218  
    11001100[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:
    11011101
    1102  * All signals now must be declared as accepting {{{**kwargs}}}.
     1102 * All handlers now must be declared as accepting {{{**kwargs}}}.
    11031103 * Signals are now instances of {{{django.dispatch.Signal}}} instead of anonymous objects.
    11041104 * 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.
Back to Top