Author: Amaury Forgeot d'Arc <[email protected]>
Branch: more-rposix
Changeset: r77023:de639e15e1ef
Date: 2015-05-04 09:12 +0200
http://bitbucket.org/pypy/pypy/changeset/de639e15e1ef/
Log: Fix failure in test_extfunc
diff --git a/rpython/rlib/rposix_stat.py b/rpython/rlib/rposix_stat.py
--- a/rpython/rlib/rposix_stat.py
+++ b/rpython/rlib/rposix_stat.py
@@ -410,7 +410,7 @@
if not _WIN32:
with lltype.scoped_alloc(STAT_STRUCT.TO) as stresult:
arg = _as_bytes0(path)
- handle_posix_error('lstat', c_stat(arg, stresult))
+ handle_posix_error('lstat', c_lstat(arg, stresult))
return build_stat_result(stresult)
else:
traits = _preferred_traits(path)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit