Author: Armin Rigo <ar...@tunes.org>
Branch: reverse-debugger
Changeset: r86168:bec055ffd7c0
Date: 2016-08-12 11:53 +0200
http://bitbucket.org/pypy/pypy/changeset/bec055ffd7c0/

Log:    translation fix

diff --git a/rpython/rlib/revdb.py b/rpython/rlib/revdb.py
--- a/rpython/rlib/revdb.py
+++ b/rpython/rlib/revdb.py
@@ -229,4 +229,6 @@
 
 def emulate_dtoa(value):
     s = llop.revdb_dtoa(lltype.Ptr(rstr.STR), value)
-    return hlstr(s)
+    s = hlstr(s)
+    assert s is not None
+    return s
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to