Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!1.eu.feeder.erje.net!feeds.phibee-telecom.net!news.panservice.it!feed.xsnews.nl!border02.ams.xsnews.nl!feeder04.ams.xsnews.nl!abp002.ams.xsnews.nl!frontend-F09-12.ams.news.kpn.nl From: Cecil Westerhof Newsgroups: comp.lang.python Subject: Re: Let exception fire or return None Organization: Decebal Computing References: <87bni6awol.fsf@Equus.decebal.nl> <87h9rxx3g6.fsf@Equus.decebal.nl> X-Face: "(y8cC@tg_12{">GF'UXTW]FHI2wMiZNrnf'1EFQ&O#$m:f#O7+7}kR,v+Pti8=Vi/Z"g^?b"E X-Homepage: http://www.decebal.nl/ Date: Thu, 30 Apr 2015 16:53:43 +0200 Message-ID: <87sibhvf9k.fsf@Equus.decebal.nl> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) Cancel-Lock: sha1:QHbgRRxG1uBPJ5hU3LiQqKuZsfw= MIME-Version: 1.0 Content-Type: text/plain Lines: 46 NNTP-Posting-Host: 81.207.62.244 X-Trace: 1430405991 news.kpn.nl 18623 81.207.62.244@kpn/81.207.62.244:38748 Xref: csiph.com comp.lang.python:89633 Op Thursday 30 Apr 2015 14:28 CEST schreef Peter Otten: > Cecil Westerhof wrote: > >>> (2) you may want to take measures to limit memory usage, e. g. >>> >>> assert index >= 0 >> >> I put that in, but as first statement. > > For the record, this was not a recommended check, but rather a way > to communicate to the reader of my code that unlike yours it doesn't > support negative indices. > >>> try: >>> [line] = itertools.islice(f, index, index+1) >>> except ValueError: >>> raise IndexError >>> return line.rstrip() >> >> In my case it is not important. (The biggest file I use has between >> 100 and 200 lines), but I publish it, so I should do my best to >> make it so lean as possible. > > If you keep your > > return f.readlines()[index] > > anyway you might allow for negative indices, and then > > get_indexed_message(message_filename, -1) > > fetches the last message in the file and > > get_indexed_message(message_filename, slice(None, None)) > > fetches a list with all messages. It is even possible without keeping it. I can fetch the number of messages and implement it myself without a possible high memory overhead. Certainly something to think about. -- Cecil Westerhof Senior Software Engineer LinkedIn: http://www.linkedin.com/in/cecilwesterhof