##// END OF EJS Templates
Respect Pep 479: Do not raise StopIteration
Matthias Bussonnier -
Show More
@@ -273,7 +273,7 b' class PrettyPrinter(_PrettyPrinterBase):'
273 self.text(',')
273 self.text(',')
274 self.breakable()
274 self.breakable()
275 self.text('...')
275 self.text('...')
276 raise StopIteration
276 return
277 yield idx, x
277 yield idx, x
278
278
279 def end_group(self, dedent=0, close=''):
279 def end_group(self, dedent=0, close=''):
General Comments 0
You need to be logged in to leave comments. Login now