[pypy-svn] r32828 - in pypy/dist/pypy: config interpreter

arigo at codespeak.net arigo at codespeak.net
Mon Oct 2 17:58:55 CEST 2006


Author: arigo
Date: Mon Oct  2 17:58:54 2006
New Revision: 32828

Modified:
   pypy/dist/pypy/config/pypyoption.py
   pypy/dist/pypy/interpreter/baseobjspace.py
Log:
For now, don't compile the unicodedata app-level module by default.
This makes pypy-c half the size!  It also seems to help quite a lot
in the start-up time of pypy.net...


Modified: pypy/dist/pypy/config/pypyoption.py
==============================================================================
--- pypy/dist/pypy/config/pypyoption.py	(original)
+++ pypy/dist/pypy/config/pypyoption.py	Mon Oct  2 17:58:54 2006
@@ -8,7 +8,8 @@
                    if p.check(dir=True, dotfile=False)]
 
 default_modules = dict.fromkeys(
-    ["unicodedata", "_codecs", "gc", "_weakref", "array", "marshal", "errno",
+    [#"unicodedata",
+     "_codecs", "gc", "_weakref", "array", "marshal", "errno",
      "math", "_sre", "_pickle_support", "sys", "exceptions", "__builtins__",
      "recparser", "symbol", "_random"])
                               

Modified: pypy/dist/pypy/interpreter/baseobjspace.py
==============================================================================
--- pypy/dist/pypy/interpreter/baseobjspace.py	(original)
+++ pypy/dist/pypy/interpreter/baseobjspace.py	Mon Oct  2 17:58:54 2006
@@ -220,7 +220,7 @@
         except AttributeError:
             pass
 
-        modules = ['sys', '__builtin__', 'exceptions', 'unicodedata',
+        modules = ['sys', '__builtin__', 'exceptions',  # 'unicodedata',
                    '_codecs', 'gc', '_weakref', 'array', 'marshal', 'errno',
                    'math', '_sre', '_pickle_support']
 



More information about the Pypy-commit mailing list