Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
6613c18e
Kaydet (Commit)
6613c18e
authored
Kas 27, 2011
tarafından
Charles-François Natali
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #13415: Test in configure if unsetenv() has a return value or not.
üst
6d47db31
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
0 deletions
+18
-0
posixmodule.c
Modules/posixmodule.c
+6
-0
configure
configure
+0
-0
configure.in
configure.in
+9
-0
pyconfig.h.in
pyconfig.h.in
+3
-0
No files found.
Modules/posixmodule.c
Dosyayı görüntüle @
6613c18e
...
...
@@ -6185,18 +6185,24 @@ posix_unsetenv(PyObject *self, PyObject *args)
{
PyObject
*
os1
;
char
*
s1
;
#ifndef HAVE_BROKEN_UNSETENV
int
err
;
#endif
if
(
!
PyArg_ParseTuple
(
args
,
"O&:unsetenv"
,
PyUnicode_FSConverter
,
&
os1
))
return
NULL
;
s1
=
PyBytes_AsString
(
os1
);
#ifdef HAVE_BROKEN_UNSETENV
unsetenv
(
s1
);
#else
err
=
unsetenv
(
s1
);
if
(
err
)
{
Py_DECREF
(
os1
);
return
posix_error
();
}
#endif
/* Remove the key from posix_putenv_garbage;
* this will cause it to be collected. This has to
...
...
configure
Dosyayı görüntüle @
6613c18e
This diff is collapsed.
Click to expand it.
configure.in
Dosyayı görüntüle @
6613c18e
...
...
@@ -2696,6 +2696,15 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
[AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(for broken unsetenv)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <stdlib.h>
]], [[int res = unsetenv("DUMMY")]])],
[AC_MSG_RESULT(no)],
[AC_DEFINE(HAVE_BROKEN_UNSETENV, 1, Define if `unsetenv` does not return an int.)
AC_MSG_RESULT(yes)
])
dnl check for true
AC_CHECK_PROGS(TRUE, true, /bin/true)
...
...
pyconfig.h.in
Dosyayı görüntüle @
6613c18e
...
...
@@ -98,6 +98,9 @@
/* define to 1 if your sem_getvalue is broken. */
#undef HAVE_BROKEN_SEM_GETVALUE
/* Define if `unsetenv` does not return an int. */
#undef HAVE_BROKEN_UNSETENV
/* Define this if you have the type _Bool. */
#undef HAVE_C99_BOOL
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment