[pypy-commit] pypy default: allow inlining into marshal, which is used in cPickle

alex_gaynor noreply at buildbot.pypy.org
Tue Nov 22 06:01:47 CET 2011


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: 
Changeset: r49653:bb940ca20b4d
Date: 2011-11-21 23:59 -0500
http://bitbucket.org/pypy/pypy/changeset/bb940ca20b4d/

Log:	allow inlining into marshal, which is used in cPickle

diff --git a/pypy/module/pypyjit/policy.py b/pypy/module/pypyjit/policy.py
--- a/pypy/module/pypyjit/policy.py
+++ b/pypy/module/pypyjit/policy.py
@@ -17,7 +17,7 @@
                        'imp', 'sys', 'array', '_ffi', 'itertools', 'operator',
                        'posix', '_socket', '_sre', '_lsprof', '_weakref',
                        '__pypy__', 'cStringIO', '_collections', 'struct',
-                       'mmap']:
+                       'mmap', 'marshal']:
             return True
         return False
 


More information about the pypy-commit mailing list