Kaydet (Commit) 922e904c authored tarafından Senthil Kumaran's avatar Senthil Kumaran

Fix issue10324 - Modules/binascii.c: simplify expressions

üst 4fe519bf
......@@ -1337,8 +1337,7 @@ binascii_b2a_qp (PyObject *self, PyObject *args, PyObject *kwargs)
((data[in] == '\t' || data[in] == ' ') && (in + 1 == datalen)) ||
((data[in] < 33) &&
(data[in] != '\r') && (data[in] != '\n') &&
(quotetabs ||
(!quotetabs && ((data[in] != '\t') && (data[in] != ' '))))))
(quotetabs || ((data[in] != '\t') && (data[in] != ' ')))))
{
if ((linelen + 3) >= MAXLINESIZE) {
linelen = 0;
......
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