[rset] remove stray (commented-out) print
authorJulien Cristau <julien.cristau@logilab.fr>
Tue, 24 Nov 2015 18:22:26 +0100
changeset 10926 f9927717f493
parent 10925 a9a5772a5ee6
child 10927 41341b5a1f49
[rset] remove stray (commented-out) print Left from debugging in af266f27c4d5
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 <http://www.gnu.org/licenses/>.
 """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):