[pypy-svn] r49378 - pypy/dist/pypy/module/marshal

fijal at codespeak.net fijal at codespeak.net
Wed Dec 5 13:53:04 CET 2007


Author: fijal
Date: Wed Dec  5 13:53:02 2007
New Revision: 49378

Modified:
   pypy/dist/pypy/module/marshal/interp_marshal.py
Log:
Mute warning


Modified: pypy/dist/pypy/module/marshal/interp_marshal.py
==============================================================================
--- pypy/dist/pypy/module/marshal/interp_marshal.py	(original)
+++ pypy/dist/pypy/module/marshal/interp_marshal.py	Wed Dec  5 13:53:02 2007
@@ -69,6 +69,8 @@
     def finished(self):
         pass
 
+    def read(self, n):
+        raise NotImplementedError("Purely abstract method")
 
 class FileWriter(AbstractReaderWriter):
     def __init__(self, space, w_f):



More information about the Pypy-commit mailing list