From: Raymond Hettinger Date: Mon, 28 Jan 2008 21:51:25 +0000 (+0000) Subject: Removed unnecessary conditional (spotted by Neal Norwitz). X-Git-Tag: v2.6a1~349 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bf3d1d5dc8ef84c2ef43c7785d3caa2b82f32d20;p=python Removed unnecessary conditional (spotted by Neal Norwitz). --- diff --git a/Python/marshal.c b/Python/marshal.c index 1b88ff964d..facfa1c167 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -882,7 +882,7 @@ r_object(RFILE *p) break; } } - retval = (v == NULL) ? NULL : v; + retval = v; break; case TYPE_CODE: