From: Barry Warsaw Date: Mon, 10 Mar 2003 17:36:04 +0000 (+0000) Subject: _bdecode(): Remove redundant check. X-Git-Tag: v2.3c1~1496 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=59e98ae1c5b59ff7636f52780dd6018b11dfe391;p=thirdparty%2FPython%2Fcpython.git _bdecode(): Remove redundant check. --- diff --git a/Lib/email/Utils.py b/Lib/email/Utils.py index 28b445995420..49232f71db72 100644 --- a/Lib/email/Utils.py +++ b/Lib/email/Utils.py @@ -66,8 +66,6 @@ def _identity(s): def _bdecode(s): - if not s: - return s # We can't quite use base64.encodestring() since it tacks on a "courtesy # newline". Blech! if not s: