Changeset 142:f5a6a5297de1 for imapclient/response_parser.py
- Timestamp:
- 04/29/10 14:01:30 (2 years ago)
- Branch:
- default
- Files:
-
- 1 modified
-
imapclient/response_parser.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
imapclient/response_parser.py
r126 r142 208 208 literal_len, len(literal_text))) 209 209 return literal_text 210 elif token.startswith('"'):211 return token[1:-1]212 210 elif token.isdigit(): 213 211 return int(token)
