Kaydet (Commit) c404ff2f authored tarafından Georg Brandl's avatar Georg Brandl

patch [ 1118729 ] Error in representation of complex numbers(again)

üst bd9c3f70
......@@ -279,15 +279,12 @@ complex_to_buf(char *buf, int bufsz, PyComplexObject *v, int precision)
strncat(buf, "j", bufsz);
} else {
char re[64], im[64];
char *fmt;
/* Format imaginary part with sign, real part without */
PyOS_snprintf(format, 32, "%%.%ig", precision);
PyOS_ascii_formatd(re, 64, format, v->cval.real);
PyOS_snprintf(format, 32, "%%+.%ig", precision);
PyOS_ascii_formatd(im, 64, format, v->cval.imag);
if (v->cval.imag < 0.)
fmt = "(%s%sj)";
else
fmt = "(%s+%sj)";
PyOS_snprintf(buf, bufsz, fmt, re, im);
PyOS_snprintf(buf, bufsz, "(%s%sj)", re, im);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment