summaryrefslogtreecommitdiffstats
path: root/Lib/email
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2003-03-10 17:36:04 (GMT)
committerBarry Warsaw <barry@python.org>2003-03-10 17:36:04 (GMT)
commit59e98ae1c5b59ff7636f52780dd6018b11dfe391 (patch)
tree60bba95a8605e0eeeba71843097e7c65dbdfde87 /Lib/email
parent513af770d7483e6b90700bbd191ebab70a83b6df (diff)
downloadcpython-59e98ae1c5b59ff7636f52780dd6018b11dfe391.zip
cpython-59e98ae1c5b59ff7636f52780dd6018b11dfe391.tar.gz
cpython-59e98ae1c5b59ff7636f52780dd6018b11dfe391.tar.bz2
_bdecode(): Remove redundant check.
Diffstat (limited to 'Lib/email')
-rw-r--r--Lib/email/Utils.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/email/Utils.py b/Lib/email/Utils.py
index 28b4459..49232f7 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: