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

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


Author: fijal
Date: Wed Dec  5 13:53:20 2007
New Revision: 49379

Modified:
   pypy/dist/pypy/module/marshal/interp_marshal.py
Log:
Mute another 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:20 2007
@@ -72,6 +72,9 @@
     def read(self, n):
         raise NotImplementedError("Purely abstract method")
 
+    def write(self, data):
+        raise NotImplementedError("Purely abstract method")
+
 class FileWriter(AbstractReaderWriter):
     def __init__(self, space, w_f):
         AbstractReaderWriter.__init__(self, space)



More information about the Pypy-commit mailing list