Author: Amaury Forgeot d'Arc <[email protected]>
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:
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to