[pypy-commit] pypy py3k: accommodate pure python pickle: these are automatically ignored when provided

pjenvey noreply at buildbot.pypy.org
Mon Mar 4 22:41:39 CET 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r62020:65d2eb0d0f42
Date: 2013-03-04 13:40 -0800
http://bitbucket.org/pypy/pypy/changeset/65d2eb0d0f42/

Log:	accommodate pure python pickle: these are automatically ignored when
	provided by _pickle

diff --git a/lib-python/3/test/test_pyclbr.py b/lib-python/3/test/test_pyclbr.py
--- a/lib-python/3/test/test_pyclbr.py
+++ b/lib-python/3/test/test_pyclbr.py
@@ -157,7 +157,7 @@
         # These were once about the 10 longest modules
         cm('random', ignore=('Random',))  # from _random import Random as CoreGenerator
         cm('cgi', ignore=('log',))      # set with = in module
-        cm('pickle')
+        cm('pickle', ignore=('Pickler', 'Unpickler',)) # from _pickle import *
         cm('aifc', ignore=('openfp',))  # set with = in module
         cm('sre_parse', ignore=('dump',)) # from sre_constants import *
         cm('pdb')


More information about the pypy-commit mailing list