[issue42455] Add decorator_with_params function to functools module

2020-11-29 Thread Yurii Karabas
Yurii Karabas <1998uri...@gmail.com> added the comment: I agree, decorator factory definitely a better name -- ___ Python tracker ___

[issue42455] Add decorator_with_params function to functools module

2020-11-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I would call it decorator_factory. -- nosy: +serhiy.storchaka ___ Python tracker ___ ___

[issue42455] Add decorator_with_params function to functools module

2020-11-24 Thread Yurii Karabas
Yurii Karabas <1998uri...@gmail.com> added the comment: Add Raymond Hettinger because he is at `Expert Index` for `functools` module -- nosy: +rhettinger ___ Python tracker

[issue42455] Add decorator_with_params function to functools module

2020-11-24 Thread Yurii Karabas
Change by Yurii Karabas <1998uri...@gmail.com>: -- keywords: +patch pull_requests: +22390 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23501 ___ Python tracker

[issue42455] Add decorator_with_params function to functools module

2020-11-24 Thread Yurii Karabas
New submission from Yurii Karabas <1998uri...@gmail.com>: In the current python codebases, there are a lot of decorators with parameters, and their code in most cases contains a lot of code boilerplates. The purpose of this issue is to add `decorator_with_params` function to `functools`