[pypy-svn] r30664 - pypy/dist/pypy/translator/cli

antocuni at codespeak.net antocuni at codespeak.net
Fri Jul 28 00:53:00 CEST 2006


Author: antocuni
Date: Fri Jul 28 00:52:52 2006
New Revision: 30664

Modified:
   pypy/dist/pypy/translator/cli/database.py
Log:
oops... forgot to remove the warning.



Modified: pypy/dist/pypy/translator/cli/database.py
==============================================================================
--- pypy/dist/pypy/translator/cli/database.py	(original)
+++ pypy/dist/pypy/translator/cli/database.py	Fri Jul 28 00:52:52 2006
@@ -263,8 +263,6 @@
         elif isinstance(value, ootype._dict):
             return DictConst(db, value, count)
         elif isinstance(value, llmemory.fakeweakaddress):
-            if value.get() is not None:
-                log.WARNING("non-null fakeweakaddress may not work because of a Mono bug")
             return WeakRefConst(db, value, count)
         else:
             assert False, 'Unknown constant: %s' % value



More information about the Pypy-commit mailing list