Author: Maciej Fijalkowski <fij...@gmail.com>
Branch: rdict-experiments-2
Changeset: r59819:46a19e804d89
Date: 2013-01-06 22:31 +0200
http://bitbucket.org/pypy/pypy/changeset/46a19e804d89/

Log:    no wait it was nonsense

diff --git a/pypy/module/cStringIO/interp_stringio.py 
b/pypy/module/cStringIO/interp_stringio.py
--- a/pypy/module/cStringIO/interp_stringio.py
+++ b/pypy/module/cStringIO/interp_stringio.py
@@ -165,7 +165,6 @@
         self.seek(i)
         return ''.join(bigbuffer[p:i])
 
-    @unwrap_spec(w_size=W_Root)
     def descr_truncate(self, w_size=None):
         self.check_closed()
         space = self.space
@@ -249,7 +248,6 @@
 
 # ____________________________________________________________
 
-@unwrap_spec(w_string=W_Root)
 def StringIO(space, w_string=None):
     if space.is_none(w_string):
         return space.wrap(W_OutputType(space))
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to