Skip to content

Commit

Permalink
Removed deprecated 'call_aside'.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Nov 4, 2023
1 parent 7f06a3e commit 9930bc1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
11 changes: 0 additions & 11 deletions jaraco/functools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,17 +279,6 @@ def invoke(f, /, *args, **kwargs):
return f


def call_aside(f, *args, **kwargs):
"""Deprecated name for invoke."""
warnings.warn(
'`jaraco.functools.call_aside` is deprecated, '
'use `jaraco.functools.invoke` instead',
DeprecationWarning,
stacklevel=2,
)
return invoke(f, *args, **kwargs)


class Throttler:
"""Rate-limit a function (or other callable)."""

Expand Down
1 change: 1 addition & 0 deletions newsfragments/21.removal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Removed deprecated 'call_aside'.

0 comments on commit 9930bc1

Please sign in to comment.