@@ -1100,9 +1100,6 @@ def update(
11001100 argument that can accept more fields later if needed. The handler may return
11011101 a serializable value which will be sent back to the caller of the update.
11021102
1103- .. warning::
1104- This API is experimental
1105-
11061103 Args:
11071104 fn: The function to decorate.
11081105 name: Update name. Defaults to method ``__name__``. Cannot be present
@@ -2981,9 +2978,6 @@ def start_local_activity(
29812978 At least one of ``schedule_to_close_timeout`` or ``start_to_close_timeout``
29822979 must be present.
29832980
2984- .. warning::
2985- Local activities are currently experimental.
2986-
29872981 Args:
29882982 activity: Activity name or function reference.
29892983 arg: Single argument to the activity.
@@ -3152,9 +3146,6 @@ async def execute_local_activity(
31523146 """Start a local activity and wait for completion.
31533147
31543148 This is a shortcut for ``await`` :py:meth:`start_local_activity`.
3155-
3156- .. warning::
3157- Local activities are currently experimental.
31583149 """
31593150 # We call the runtime directly instead of top-level start_local_activity to
31603151 # ensure we don't miss new parameters
@@ -3282,9 +3273,6 @@ def start_local_activity_class(
32823273 """Start a local activity from a callable class.
32833274
32843275 See :py:meth:`start_local_activity` for parameter and return details.
3285-
3286- .. warning::
3287- Local activities are currently experimental.
32883276 """
32893277 return _Runtime .current ().workflow_start_local_activity (
32903278 activity ,
@@ -3410,9 +3398,6 @@ async def execute_local_activity_class(
34103398 """Start a local activity from a callable class and wait for completion.
34113399
34123400 This is a shortcut for ``await`` :py:meth:`start_local_activity_class`.
3413-
3414- .. warning::
3415- Local activities are currently experimental.
34163401 """
34173402 # We call the runtime directly instead of top-level start_local_activity to
34183403 # ensure we don't miss new parameters
@@ -3540,9 +3525,6 @@ def start_local_activity_method(
35403525 """Start a local activity from a method.
35413526
35423527 See :py:meth:`start_local_activity` for parameter and return details.
3543-
3544- .. warning::
3545- Local activities are currently experimental.
35463528 """
35473529 return _Runtime .current ().workflow_start_local_activity (
35483530 activity ,
@@ -3668,9 +3650,6 @@ async def execute_local_activity_method(
36683650 """Start a local activity from a method and wait for completion.
36693651
36703652 This is a shortcut for ``await`` :py:meth:`start_local_activity_method`.
3671-
3672- .. warning::
3673- Local activities are currently experimental.
36743653 """
36753654 # We call the runtime directly instead of top-level start_local_activity to
36763655 # ensure we don't miss new parameters
0 commit comments