[pypy-commit] pypy default: Remove unreachable statement referring to nonexistant variable.

dripton noreply at buildbot.pypy.org
Mon Jan 23 01:30:48 CET 2012


Author: David Ripton <dripton at ripton.net>
Branch: 
Changeset: r51674:3ed178fb213d
Date: 2012-01-21 13:42 -0500
http://bitbucket.org/pypy/pypy/changeset/3ed178fb213d/

Log:	Remove unreachable statement referring to nonexistant variable.

diff --git a/lib_pypy/_sqlite3.py b/lib_pypy/_sqlite3.py
--- a/lib_pypy/_sqlite3.py
+++ b/lib_pypy/_sqlite3.py
@@ -861,8 +861,6 @@
         except StopIteration:
             return None
 
-        return nextrow
-
     def fetchmany(self, size=None):
         self._check_closed()
         self._check_reset()


More information about the pypy-commit mailing list