[Python-checkins] python/dist/src/Lib/email Header.py,1.28,1.29 (original) (raw)
bwarsaw at users.sourceforge.net bwarsaw at users.sourceforge.net
Mon May 10 10:44:15 EDT 2004
- Previous message: [Python-checkins] python/dist/src/Lib/test test_deque.py,1.8,1.9
- Next message: [Python-checkins] python/dist/src/Lib/email FeedParser.py,1.2,1.3
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Update of /cvsroot/python/python/dist/src/Lib/email In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6010
Modified Files: Header.py Log Message: _split_ascii(): Small optimization by RH.
Index: Header.py
RCS file: /cvsroot/python/python/dist/src/Lib/email/Header.py,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** Header.py 9 May 2004 03:40:17 -0000 1.28 --- Header.py 10 May 2004 14:44:04 -0000 1.29
*** 412,416 **** # whitespace. for ch in splitchars: ! if line.find(ch) >= 0: break else: --- 412,416 ---- # whitespace. for ch in splitchars: ! if ch in line: break else:
- Previous message: [Python-checkins] python/dist/src/Lib/test test_deque.py,1.8,1.9
- Next message: [Python-checkins] python/dist/src/Lib/email FeedParser.py,1.2,1.3
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]