Author: Maciej Fijalkowski <[email protected]>
Branch: refactor-str-types
Changeset: r66328:95efef15ffbe
Date: 2013-08-26 18:09 +0100
http://bitbucket.org/pypy/pypy/changeset/95efef15ffbe/
Log: change None to False
diff --git a/rpython/annotator/description.py b/rpython/annotator/description.py
--- a/rpython/annotator/description.py
+++ b/rpython/annotator/description.py
@@ -148,7 +148,7 @@
def mergecallfamilies(self, *others):
"""Merge the call families of the given Descs into one."""
if not others:
- return
+ return False
call_families = self.bookkeeper.pbc_maximal_call_families
changed, rep, callfamily = call_families.find(self.rowkey())
for desc in others:
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit