[pypy-svn] r17288 - pypy/dist/pypy/annotation

arigo at codespeak.net arigo at codespeak.net
Tue Sep 6 15:19:24 CEST 2005


Author: arigo
Date: Tue Sep  6 15:19:24 2005
New Revision: 17288

Modified:
   pypy/dist/pypy/annotation/model.py
Log:
Dicts can also be None now.


Modified: pypy/dist/pypy/annotation/model.py
==============================================================================
--- pypy/dist/pypy/annotation/model.py	(original)
+++ pypy/dist/pypy/annotation/model.py	Tue Sep  6 15:19:24 2005
@@ -258,7 +258,7 @@
         return selfdic == otherdic
 
     def can_be_none(self):
-        return False
+        return True
 
     def fmt_const(self, const):
         if len(const) < 20:



More information about the Pypy-commit mailing list