[pypy-svn] r52500 - pypy/dist/pypy/interpreter/test

arigo at codespeak.net arigo at codespeak.net
Fri Mar 14 15:00:44 CET 2008


Author: arigo
Date: Fri Mar 14 15:00:43 2008
New Revision: 52500

Modified:
   pypy/dist/pypy/interpreter/test/test_pickle.py
Log:
Can't pickle buffer objects on top of CPython either.
Do we really need it?  If so, which kinds of buffer do we need?


Modified: pypy/dist/pypy/interpreter/test/test_pickle.py
==============================================================================
--- pypy/dist/pypy/interpreter/test/test_pickle.py	(original)
+++ pypy/dist/pypy/interpreter/test/test_pickle.py	Fri Mar 14 15:00:43 2008
@@ -241,6 +241,8 @@
         assert mod is result
     
     def test_pickle_buffer(self):
+        skip("Can't pickle buffer objects on top of CPython either.  "
+             "Do we really need it?")
         import pickle
         a = buffer('ABCDEF')
         pckl     = pickle.dumps(a)



More information about the Pypy-commit mailing list