[pypy-svn] r50765 - pypy/branch/clr-module-improvements/pypy/module/clr

antocuni at codespeak.net antocuni at codespeak.net
Fri Jan 18 22:32:51 CET 2008


Author: antocuni
Date: Fri Jan 18 22:32:50 2008
New Revision: 50765

Modified:
   pypy/branch/clr-module-improvements/pypy/module/clr/interp_clr.py
Log:
these str are not needed, and moreover they confuses the annotator



Modified: pypy/branch/clr-module-improvements/pypy/module/clr/interp_clr.py
==============================================================================
--- pypy/branch/clr-module-improvements/pypy/module/clr/interp_clr.py	(original)
+++ pypy/branch/clr-module-improvements/pypy/module/clr/interp_clr.py	Fri Jan 18 22:32:50 2008
@@ -209,8 +209,8 @@
     w_assemblyName = space.wrap(b_assembly.get_FullName())
     for i in range(len(b_types)):
         b_type = b_types[i]
-        namespace = str(b_type.get_Namespace())
-        fullname = str(b_type.get_FullName())
+        namespace = b_type.get_Namespace()
+        fullname = b_type.get_FullName()
         if '+' in fullname:
             # it's an internal type, skip it
             continue



More information about the Pypy-commit mailing list