[pypy-commit] pypy default: kill some dead code

fijal noreply at buildbot.pypy.org
Fri Jul 22 00:50:06 CEST 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r45851:d6837e825d00
Date: 2011-07-22 00:49 +0200
http://bitbucket.org/pypy/pypy/changeset/d6837e825d00/

Log:	kill some dead code

diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micronumpy/interp_numarray.py
--- a/pypy/module/micronumpy/interp_numarray.py
+++ b/pypy/module/micronumpy/interp_numarray.py
@@ -11,14 +11,6 @@
 from pypy.tool.sourcetools import func_with_new_name
 import math
 
-def dummy1(v):
-    assert isinstance(v, float)
-    return v
-
-def dummy2(v):
-    assert isinstance(v, float)
-    return v
-
 TP = lltype.Array(lltype.Float, hints={'nolength': True})
 
 numpy_driver = jit.JitDriver(greens = ['signature'],


More information about the pypy-commit mailing list