[pypy-commit] pypy default: Move "time" one level down the hierarchy of modules: nowadays we can't

arigo noreply at buildbot.pypy.org
Thu Jul 9 13:10:47 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r78505:9242aeaed1e3
Date: 2015-07-09 13:10 +0200
http://bitbucket.org/pypy/pypy/changeset/9242aeaed1e3/

Log:	Move "time" one level down the hierarchy of modules: nowadays we
	can't really do anything without having it translated

diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -23,14 +23,14 @@
 default_modules.update([
     "_codecs", "gc", "_weakref", "marshal", "errno", "imp", "math", "cmath",
     "_sre", "_pickle_support", "operator", "parser", "symbol", "token", "_ast",
-    "_io", "_random", "__pypy__", "_testing"
+    "_io", "_random", "__pypy__", "_testing", "time"
 ])
 
 
 # --allworkingmodules
 working_modules = default_modules.copy()
 working_modules.update([
-    "_socket", "unicodedata", "mmap", "fcntl", "_locale", "pwd", "time" ,
+    "_socket", "unicodedata", "mmap", "fcntl", "_locale", "pwd",
     "select", "zipimport", "_lsprof", "crypt", "signal", "_rawffi", "termios",
     "zlib", "bz2", "struct", "_hashlib", "_md5", "_sha", "_minimal_curses",
     "cStringIO", "thread", "itertools", "pyexpat", "_ssl", "cpyext", "array",


More information about the pypy-commit mailing list