[pypy-commit] pypy py3k: Fix typo

amauryfa noreply at buildbot.pypy.org
Thu Oct 13 22:40:32 CEST 2011


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: py3k
Changeset: r48036:1795d200c7eb
Date: 2011-10-13 22:38 +0200
http://bitbucket.org/pypy/pypy/changeset/1795d200c7eb/

Log:	Fix typo

diff --git a/pypy/objspace/std/inttype.py b/pypy/objspace/std/inttype.py
--- a/pypy/objspace/std/inttype.py
+++ b/pypy/objspace/std/inttype.py
@@ -36,7 +36,7 @@
 @gateway.unwrap_spec(s='bufferstr', byteorder=str)
 def descr_from_bytes(space, w_cls, s, byteorder):
     from pypy.objspace.std.longtype import descr_from_bytes
-    return descr_from_bytes(space, space.w_long, s)
+    return descr_from_bytes(space, space.w_long, s, byteorder)
 
 def wrapint(space, x):
     if space.config.objspace.std.withsmallint:


More information about the pypy-commit mailing list