[pypy-commit] pypy stmgc-c7: Bah

arigo noreply at buildbot.pypy.org
Sun May 4 20:55:42 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: stmgc-c7
Changeset: r71265:6180df23e44d
Date: 2014-05-04 20:55 +0200
http://bitbucket.org/pypy/pypy/changeset/6180df23e44d/

Log:	Bah

diff --git a/rpython/translator/stm/src_stm/extracode.h b/rpython/translator/stm/src_stm/extracode.h
--- a/rpython/translator/stm/src_stm/extracode.h
+++ b/rpython/translator/stm/src_stm/extracode.h
@@ -98,7 +98,7 @@
         name = _RPyString_AsString(co_name);
         if (nlen > remaining / 2) {
             nlen = remaining / 2;
-            ntrunc = "<";
+            ntrunc = ">";
         }
         remaining -= nlen;
 
@@ -107,7 +107,7 @@
         if (fnlen > remaining) {
             fn += (fnlen - remaining);
             fnlen = remaining;
-            fntrunc = ">";
+            fntrunc = "<";
         }
 
         long lnotablen = RPyString_Size(co_lnotab);


More information about the pypy-commit mailing list