[pypy-commit] pypy int_w-refactor: close to be merged branch

antocuni noreply at buildbot.pypy.org
Fri Feb 28 16:27:14 CET 2014


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: int_w-refactor
Changeset: r69550:bcbdb7638f71
Date: 2014-02-28 16:22 +0100
http://bitbucket.org/pypy/pypy/changeset/bcbdb7638f71/

Log:	close to be merged branch

diff --git a/pypy/module/micronumpy/interp_boxes.py b/pypy/module/micronumpy/interp_boxes.py
--- a/pypy/module/micronumpy/interp_boxes.py
+++ b/pypy/module/micronumpy/interp_boxes.py
@@ -173,6 +173,7 @@
         return space.long(box.item(space))
 
     def descr_float(self, space):
+        import pdb;pdb.set_trace()
         box = self.convert_to(space, W_Float64Box._get_dtype(space))
         return space.float(box.item(space))
 


More information about the pypy-commit mailing list