[pypy-svn] pypy default: Add cmath in the default list of modules.

arigo commits-noreply at bitbucket.org
Thu Jan 20 11:52:02 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r40972:060cbb893f87
Date: 2011-01-20 11:51 +0100
http://bitbucket.org/pypy/pypy/changeset/060cbb893f87/

Log:	Add cmath in the default list of modules.

diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -18,7 +18,7 @@
 default_modules = essential_modules.copy()
 default_modules.update(dict.fromkeys(
     ["_codecs", "gc", "_weakref", "marshal", "errno", "imp",
-     "math", "_sre", "_pickle_support", "operator",
+     "math", "cmath", "_sre", "_pickle_support", "operator",
      "parser", "symbol", "token", "_ast",  "_io", "_random", "__pypy__",
      "_testing"]))
 


More information about the Pypy-commit mailing list