summaryrefslogtreecommitdiffstats
path: root/Modules/_decimal
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2013-11-08 16:48:58 (GMT)
committerStefan Krah <skrah@bytereef.org>2013-11-08 16:48:58 (GMT)
commita0fd1f5a187a001650ade75fbfe97418705beff8 (patch)
tree8b11ec9fbf628aeea6889ab98664a3755e95d2ca /Modules/_decimal
parentac470854b8121ce4b5dc9388c9ad084f5359b2aa (diff)
downloadcpython-a0fd1f5a187a001650ade75fbfe97418705beff8.zip
cpython-a0fd1f5a187a001650ade75fbfe97418705beff8.tar.gz
cpython-a0fd1f5a187a001650ade75fbfe97418705beff8.tar.bz2
Change style to match the surrounding code (no early returns).
Diffstat (limited to 'Modules/_decimal')
-rw-r--r--Modules/_decimal/_decimal.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/Modules/_decimal/_decimal.c b/Modules/_decimal/_decimal.c
index 6f9e9de..aec3949 100644
--- a/Modules/_decimal/_decimal.c
+++ b/Modules/_decimal/_decimal.c
@@ -3010,12 +3010,11 @@ convert_op_cmp(PyObject **vcmp, PyObject **wcmp, PyObject *v, PyObject *w,
}
}
else {
- int is_instance = PyObject_IsInstance(w, Rational);
- if (is_instance < 0) {
+ int is_rational = PyObject_IsInstance(w, Rational);
+ if (is_rational < 0) {
*wcmp = NULL;
- return 0;
}
- if (is_instance) {
+ else if (is_rational > 0) {
*wcmp = numerator_as_decimal(w, context);
if (*wcmp && !mpd_isspecial(MPD(v))) {
*vcmp = multiply_by_denominator(v, w, context);