Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unrelated change.
  • Loading branch information
serhiy-storchaka committed Nov 26, 2024
commit bc4adfd45f0861ca07897375ff4d37f8d6f57029
4 changes: 2 additions & 2 deletions Objects/complexobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ class complex "PyComplexObject *" "&PyComplex_Type"

#include "clinic/complexobject.c.h"

static Py_complex c_1 = {1., 0.};

/* elementary operations on complex numbers */

static Py_complex c_1 = {1., 0.};

Py_complex
_Py_c_sum(Py_complex a, Py_complex b)
{
Expand Down