[pypy-commit] pypy py3k: Remove these comments.

Manuel Jacob noreply at buildbot.pypy.org
Sun Feb 17 23:07:48 CET 2013


Author: Manuel Jacob
Branch: py3k
Changeset: r61383:ede09f55217f
Date: 2013-02-17 22:49 +0100
http://bitbucket.org/pypy/pypy/changeset/ede09f55217f/

Log:	Remove these comments.

diff --git a/pypy/objspace/std/floatobject.py b/pypy/objspace/std/floatobject.py
--- a/pypy/objspace/std/floatobject.py
+++ b/pypy/objspace/std/floatobject.py
@@ -162,14 +162,11 @@
         s = "nan"
     return s
 
-#XXX short float repr?
-
 def repr__Float(space, w_float):
     return space.wrap(float2string(w_float.floatval, 'r', 0))
 
 def str__Float(space, w_float):
     return space.wrap(float2string(w_float.floatval, 'r', 0))
-    #return space.wrap(float2string(w_float.floatval, 'g', DTSF_STR_PRECISION))
 
 def format__Float_ANY(space, w_float, w_spec):
     return newformat.run_formatter(space, w_spec, "format_float", w_float)


More information about the pypy-commit mailing list