[pypy-svn] r59398 - pypy/trunk/pypy/module/struct

fijal at codespeak.net fijal at codespeak.net
Sat Oct 25 13:46:43 CEST 2008


Author: fijal
Date: Sat Oct 25 13:46:43 2008
New Revision: 59398

Modified:
   pypy/trunk/pypy/module/struct/app_struct.py
Log:
nice typo :)


Modified: pypy/trunk/pypy/module/struct/app_struct.py
==============================================================================
--- pypy/trunk/pypy/module/struct/app_struct.py	(original)
+++ pypy/trunk/pypy/module/struct/app_struct.py	Sat Oct 25 13:46:43 2008
@@ -35,7 +35,7 @@
         return struct.unpack(self.format, s)
 
     def pack_into(self, buffer, offset, *args):
-        return pack_info(self.format, buffer, offset, *args)
+        return pack_into(self.format, buffer, offset, *args)
 
     def unpack_from(self, buffer, offset=0):
         return unpack_from(self.format, buffer, offset)



More information about the Pypy-commit mailing list