diff options
author | Fred Drake <fdrake@acm.org> | 2000-08-15 18:52:33 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-08-15 18:52:33 (GMT) |
commit | 56221a7cfa8f361f4310b63b74091766c50dd7f8 (patch) | |
tree | fa463c682b2f773a8b2cc5f27aa936a8853d1a89 /Modules/pwdmodule.c | |
parent | d3415791783dcdf6f6dedd2a878ea0e09aa39fc9 (diff) | |
download | cpython-56221a7cfa8f361f4310b63b74091766c50dd7f8.zip cpython-56221a7cfa8f361f4310b63b74091766c50dd7f8.tar.gz cpython-56221a7cfa8f361f4310b63b74091766c50dd7f8.tar.bz2 |
Chris Herborth <chrish@pobox.com>:
Minor updates for BeOS R5.
Use of OSError in test.test_fork1 changed to TestSkipped, with corresponding
change in BeOS/README (by Fred).
This closes SourceForge patch #100978.
Diffstat (limited to 'Modules/pwdmodule.c')
-rw-r--r-- | Modules/pwdmodule.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Modules/pwdmodule.c b/Modules/pwdmodule.c index 1efe81a..7f58ed3 100644 --- a/Modules/pwdmodule.c +++ b/Modules/pwdmodule.c @@ -29,13 +29,6 @@ exception is raised if the entry asked for cannot be found."; static PyObject * mkpwent(struct passwd *p) { -#ifdef __BEOS__ - /* For faking the GECOS field. - [cjh] */ - char *be_user = NULL; - - be_user = getenv( "USER" ); -#endif - return Py_BuildValue( "(ssllsss)", p->pw_name, @@ -49,12 +42,7 @@ mkpwent(struct passwd *p) (long)p->pw_uid, (long)p->pw_gid, #endif -#ifdef __BEOS__ -/* BeOS doesn't have a GECOS field, oddly enough. - [cjh] */ - be_user ? be_user : "baron", -#else p->pw_gecos, -#endif p->pw_dir, p->pw_shell); } |