[Python-checkins] python/dist/src/Lib/email Utils.py,1.22,1.23

bwarsaw@users.sourceforge.net bwarsaw@users.sourceforge.net
Mon, 10 Mar 2003 09:36:08 -0800


Update of /cvsroot/python/python/dist/src/Lib/email
In directory sc8-pr-cvs1:/tmp/cvs-serv30210

Modified Files:
	Utils.py 
Log Message:
_bdecode(): Remove redundant check.


Index: Utils.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/Utils.py,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** Utils.py	7 Mar 2003 22:46:41 -0000	1.22
--- Utils.py	10 Mar 2003 17:36:04 -0000	1.23
***************
*** 67,72 ****
  
  def _bdecode(s):
-     if not s:
-         return s
      # We can't quite use base64.encodestring() since it tacks on a "courtesy
      # newline".  Blech!
--- 67,70 ----