[pypy-svn] pypy default: Backout c608917430ad. It's a mess. See next checkin for explanations.

arigo commits-noreply at bitbucket.org
Thu Apr 28 17:14:55 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r43718:9af9046d106b
Date: 2011-04-28 16:57 +0200
http://bitbucket.org/pypy/pypy/changeset/9af9046d106b/

Log:	Backout c608917430ad. It's a mess. See next checkin for
	explanations.

diff --git a/lib_pypy/pwd.py b/lib_pypy/pwd.py
--- a/lib_pypy/pwd.py
+++ b/lib_pypy/pwd.py
@@ -15,14 +15,14 @@
     raise ImportError("No pwd module on Windows")
 
 from ctypes_support import standard_c_lib as libc
-from ctypes import Structure, POINTER, c_int, c_char_p, c_long, c_uint
+from ctypes import Structure, POINTER, c_int, c_char_p, c_long
 
 try: from __pypy__ import builtinify
 except ImportError: builtinify = lambda f: f
 
 
-uid_t = c_uint
-gid_t = c_uint
+uid_t = c_int
+gid_t = c_int
 time_t = c_long
 
 if sys.platform == 'darwin':


More information about the Pypy-commit mailing list