]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
_bdecode(): Remove redundant check.
authorBarry Warsaw <barry@python.org>
Mon, 10 Mar 2003 17:36:04 +0000 (17:36 +0000)
committerBarry Warsaw <barry@python.org>
Mon, 10 Mar 2003 17:36:04 +0000 (17:36 +0000)
Lib/email/Utils.py

index 28b4459954202315956879552a44a28c72b66e39..49232f71db7253df93097a0fd8053533a2ac7f72 100644 (file)
@@ -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: