@@ -1055,7 +1055,7 @@ \section{Extended Slices\label{section-slices}}
10551055 def __getitem__(self, item):
10561056 if isinstance(item, slice):
10571057 indices = item.indices(len(self))
1058- return FakeSeq([self.calc_item(i) in range(*indices)])
1058+ return FakeSeq([self.calc_item(i) for i in range(*indices)])
10591059 else:
10601060 return self.calc_item(i)
10611061\end {verbatim }
@@ -2386,7 +2386,8 @@ \section{Acknowledgements \label{acks}}
23862386The author would like to thank the following people for offering
23872387suggestions, corrections and assistance with various drafts of this
23882388article: Jeff Bauer, Simon Brunning, Brett Cannon, Michael Chermside,
2389- Andrew Dalke, Scott David Daniels, Fred~L. Drake, Jr., Kelly Gerber,
2389+ Andrew Dalke, Scott David Daniels, Fred~L. Drake, Jr., David Fraser,
2390+ Kelly Gerber,
23902391Raymond Hettinger, Michael Hudson, Chris Lambert, Detlef Lannert,
23912392Martin von~L\" owis, Andrew MacIntyre, Lalo Martins, Chad Netzer,
23922393Gustavo Niemeyer, Neal Norwitz, Hans Nowak, Chris Reedy, Francesco
0 commit comments