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
862490a5
Kaydet (Commit)
862490a5
authored
May 06, 2010
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Untabify Modules/posixmodule.c (2)
Fix some more functions by hand
üst
d6f85423
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
posixmodule.c
Modules/posixmodule.c
+10
-10
No files found.
Modules/posixmodule.c
Dosyayı görüntüle @
862490a5
...
@@ -612,10 +612,10 @@ os2_formatmsg(char *msgbuf, int msglen, char *reason)
...
@@ -612,10 +612,10 @@ os2_formatmsg(char *msgbuf, int msglen, char *reason)
msgbuf
[
msglen
]
=
'\0'
;
/* OS/2 Doesn't Guarantee a Terminator */
msgbuf
[
msglen
]
=
'\0'
;
/* OS/2 Doesn't Guarantee a Terminator */
if
(
strlen
(
msgbuf
)
>
0
)
{
/* If Non-Empty Msg, Trim CRLF */
if
(
strlen
(
msgbuf
)
>
0
)
{
/* If Non-Empty Msg, Trim CRLF */
char
*
lastc
=
&
msgbuf
[
strlen
(
msgbuf
)
-
1
];
char
*
lastc
=
&
msgbuf
[
strlen
(
msgbuf
)
-
1
];
while
(
lastc
>
msgbuf
&&
isspace
(
Py_CHARMASK
(
*
lastc
)))
while
(
lastc
>
msgbuf
&&
isspace
(
Py_CHARMASK
(
*
lastc
)))
*
lastc
--
=
'\0'
;
/* Trim Trailing Whitespace (CRLF) */
*
lastc
--
=
'\0'
;
/* Trim Trailing Whitespace (CRLF) */
}
}
/* Add Optional Reason Text */
/* Add Optional Reason Text */
...
@@ -8181,14 +8181,14 @@ posix_sysconf(PyObject *self, PyObject *args)
...
@@ -8181,14 +8181,14 @@ posix_sysconf(PyObject *self, PyObject *args)
int
name
;
int
name
;
if
(
PyArg_ParseTuple
(
args
,
"O&:sysconf"
,
conv_sysconf_confname
,
&
name
))
{
if
(
PyArg_ParseTuple
(
args
,
"O&:sysconf"
,
conv_sysconf_confname
,
&
name
))
{
int
value
;
int
value
;
errno
=
0
;
errno
=
0
;
value
=
sysconf
(
name
);
value
=
sysconf
(
name
);
if
(
value
==
-
1
&&
errno
!=
0
)
if
(
value
==
-
1
&&
errno
!=
0
)
posix_error
();
posix_error
();
else
else
result
=
PyInt_FromLong
(
value
);
result
=
PyInt_FromLong
(
value
);
}
}
return
result
;
return
result
;
}
}
...
...
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