Author: fijal
Branch: unicode-utf8
Changeset: r90397:f5e948aa5162
Date: 2017-02-27 14:42 +0100
http://bitbucket.org/pypy/pypy/changeset/f5e948aa5162/

Log:    remove pdb

diff --git a/rpython/annotator/listdef.py b/rpython/annotator/listdef.py
--- a/rpython/annotator/listdef.py
+++ b/rpython/annotator/listdef.py
@@ -107,9 +107,6 @@
             self.bookkeeper.annotator.reflowfromposition(position_key)
 
     def generalize(self, s_other_value):
-        if hasattr(self.s_value, 'can_be_None') and not 
self.s_value.can_be_None and getattr(s_other_value, 'can_be_None', False):
-            import pdb
-            pdb.set_trace()
         s_new_value = unionof(self.s_value, s_other_value)
         updated = s_new_value != self.s_value
         if updated:
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to