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
083c0aac
Kaydet (Commit)
083c0aac
authored
Şub 12, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Clean trailing whitespaces in Makefile.pre.in and grpmodule.c.
üst
aa1e1a27
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
Makefile.pre.in
Makefile.pre.in
+3
-3
grpmodule.c
Modules/grpmodule.c
+3
-3
No files found.
Makefile.pre.in
Dosyayı görüntüle @
083c0aac
...
...
@@ -475,7 +475,7 @@ libpython$(VERSION).so: $(LIBRARY_OBJS)
libpython$(VERSION).dylib
:
$(LIBRARY_OBJS)
$(CC)
-dynamiclib
-Wl
,-single_module
$(LDFLAGS)
-undefined
dynamic_lookup
-Wl
,-install_name,
$(prefix)
/lib/libpython
$(VERSION)
.dylib
-Wl
,-compatibility_version,
$(VERSION)
-Wl
,-current_version,
$(VERSION)
-o
$@
$(LIBRARY_OBJS)
$(SHLIBS)
$(LIBC)
$(LIBM)
$(LDLAST)
;
\
libpython$(VERSION).sl
:
$(LIBRARY_OBJS)
$(LDSHARED)
-o
$@
$(LIBRARY_OBJS)
$(MODLIBS)
$(SHLIBS)
$(LIBC)
$(LIBM)
$(LDLAST)
...
...
@@ -911,7 +911,7 @@ PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
plat-mac/lib-scriptpackages/Netscape
\
plat-mac/lib-scriptpackages/StdSuites
\
plat-mac/lib-scriptpackages/SystemEvents
\
plat-mac/lib-scriptpackages/Terminal
plat-mac/lib-scriptpackages/Terminal
PLATMACPATH
=
:plat-mac:plat-mac/lib-scriptpackages
LIBSUBDIRS
=
lib-tk lib-tk/test lib-tk/test/test_tkinter
\
lib-tk/test/test_ttk site-packages
test test
/data
\
...
...
@@ -1333,7 +1333,7 @@ Python/thread.o: @THREADHEADERS@
.PHONY
:
maninstall libinstall inclinstall libainstall sharedinstall
.PHONY
:
frameworkinstall frameworkinstallframework frameworkinstallstructure
.PHONY
:
frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
.PHONY
:
frameworkaltinstallunixtools recheck autoconf clean clobber distclean
.PHONY
:
frameworkaltinstallunixtools recheck autoconf clean clobber distclean
.PHONY
:
smelly funny patchcheck altmaninstall
.PHONY
:
gdbhooks
...
...
Modules/grpmodule.c
Dosyayı görüntüle @
083c0aac
...
...
@@ -10,8 +10,8 @@
static
PyStructSequence_Field
struct_group_type_fields
[]
=
{
{
"gr_name"
,
"group name"
},
{
"gr_passwd"
,
"password"
},
{
"gr_gid"
,
"group id"
},
{
"gr_mem"
,
"group memebers"
},
{
"gr_gid"
,
"group id"
},
{
"gr_mem"
,
"group memebers"
},
{
0
}
};
...
...
@@ -113,7 +113,7 @@ grp_getgrnam(PyObject *self, PyObject *pyo_name)
if
(
!
py_str_name
)
return
NULL
;
name
=
PyString_AS_STRING
(
py_str_name
);
if
((
p
=
getgrnam
(
name
))
==
NULL
)
{
PyErr_Format
(
PyExc_KeyError
,
"getgrnam(): name not found: %s"
,
name
);
Py_DECREF
(
py_str_name
);
...
...
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