Jeong YunWon 15e7d8ab2e Handle hooks parameters in more debuggable way
1. not list() -> callable()
The args of hooking parameters of Sanic have to be callables.
For wrong parameters, errors will be generated from:
```
    listeners += args
```

By checking just list type, the raised error will be associated
with `[args]` instead of `args`, which is not given by users.
With this patch, the raised error will be associated with `args`.
Then users can notice their argument was neither callable nor list
in the easier way.

2. Function -> Functions in document
Regarding the parameter as a list is harmless to the user code.
But unawareness of its type can be list can limit the potent of
the user code.
2016-12-28 18:14:57 +09:00
..
2016-12-24 18:51:16 -08:00
2016-10-18 01:38:50 -07:00
2016-10-20 00:28:05 -04:00
2016-11-19 18:04:35 -08:00
2016-12-04 10:50:32 +09:00
2016-12-23 16:17:34 -08:00
2016-11-28 14:05:47 -05:00
2016-12-24 18:11:46 -08:00
2016-11-28 14:00:39 -05:00
2016-11-28 14:22:07 -05:00