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/posixmodule.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/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index d7755bf..d5290f6 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3620,11 +3620,6 @@ static char posix_putenv__doc__[] = "putenv(key, value) -> None\n\ Change or add an environment variable."; -#ifdef __BEOS__ -/* We have putenv(), but not in the headers (as of PR2). - [cjh] */ -int putenv( const char *str ); -#endif - /* Save putenv() parameters as values here, so we can collect them when they * get re-set with another call for the same key. */ static PyObject *posix_putenv_garbage; |