Update:
Constrain axis needs to be changed in the original uploaded file. I made the change in the script included in the text. Should be (False, False, True).{F9827694}
**System Information**
Operating system: Windows 10
Graphics card: Nvidia GeForce GTX 960
**Blender Version**
Broken: 2.92.0 Release Candidate, branch: master, commit date: 2021-02-19 18:02, hash: b1142858d4ca, type: Release
{F9822073}
**Short description of error**
With Bezier control point selected, bpy.ops.transform.rotate() seems to ignore center_override optionUpdate:
{F9822073}
**Exact steps for others to reproduce the error**
Run following script, both curves are the same
```
import bpy
import math
from mathutils import Vector
# Create Bezier, select last control point, rotate about (0.0,1.0,0.0) using center_override option
bpy.ops.curve.primitive_bezier_curve_add(radius=1, enter_editmode=False, align='WORLD', location=(0, 0, 0))
bpy.ops.object.editmode_toggle()
bpy.ops.curve.select_all(action='DESELECT')
bpy.context.selected_objects[0].data.splines[0].bezier_points[1].select_control_point = True
center = Vector([0.0,1.0,0.0])
bpy.ops.transform.rotate(value=.3, orient_axis='Z', orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(False, False, True), mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False, center_override=(center))
# Create Bezier, select last control point, rotate without using center_override option
bpy.ops.object.editmode_toggle()
bpy.ops.curve.primitive_bezier_curve_add(radius=1, enter_editmode=False, align='WORLD', location=(0, 0, 0))
bpy.ops.object.editmode_toggle()
bpy.ops.curve.select_all(action='DESELECT')
bpy.context.selected_objects[0].data.splines[0].bezier_points[1].select_control_point = True
bpy.ops.transform.rotate(value=.3, orient_axis='Z', orient_type='GLOBAL', orient_matrix=((1, 0, 0), (0, 1, 0), (0, 0, 1)), orient_matrix_type='GLOBAL', constraint_axis=(False, False, True), mirror=True, use_proportional_edit=False, proportional_edit_falloff='SMOOTH', proportional_size=1, use_proportional_connected=False, use_proportional_projected=False)
bpy.ops.object.editmode_toggle()
```
---
**Update:**
Constrain axis needs to be changed in the original uploaded file. I made the change in the script included in the text. Should be (False, False, True).
{F9827694}