Kaydet (Commit) d69755d1 authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Minor code clean-up.

üst 29655df1
......@@ -261,8 +261,8 @@ keep_top_bit(Py_ssize_t n)
int i = 0;
while (n > 1) {
i += 1;
n >>= 1;
i++;
}
return n << i;
}
......
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