# HG changeset patch # User Julien Cristau # Date 1448385746 -3600 # Node ID f9927717f4937bcd88da078f4251d44bfe813646 # Parent a9a5772a5ee6a1adcf6072ba8fb8f2de5f3438fc [rset] remove stray (commented-out) print Left from debugging in af266f27c4d5 diff -r a9a5772a5ee6 -r f9927717f493 rset.py --- a/rset.py Mon Nov 23 19:18:08 2015 +0100 +++ b/rset.py Tue Nov 24 18:22:26 2015 +0100 @@ -16,7 +16,6 @@ # You should have received a copy of the GNU Lesser General Public License along # with CubicWeb. If not, see . """The `ResultSet` class which is returned as result of an rql query""" -from __future__ import print_function __docformat__ = "restructuredtext en" from warnings import warn @@ -121,7 +120,6 @@ def __getitem__(self, i): """returns the ith element of the result set""" - #print('__getitem__', i) return self.rows[i] #ResultSetRow(self.rows[i]) def __iter__(self):