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
68bc4f9a
Kaydet (Commit)
68bc4f9a
authored
Mar 01, 2006
tarafından
Thomas Wouters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Py_ssize_t-ify.
üst
9d63ccae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
posixmodule.c
Modules/posixmodule.c
+10
-5
No files found.
Modules/posixmodule.c
Dosyayı görüntüle @
68bc4f9a
...
...
@@ -13,6 +13,8 @@
/* See also ../Dos/dosmodule.c */
#define PY_SSIZE_T_CLEAN
#include "Python.h"
#include "structseq.h"
...
...
@@ -1759,7 +1761,7 @@ posix_listdir(PyObject *self, PyObject *args)
#define MAX_PATH CCHMAXPATH
#endif
char
*
name
,
*
pt
;
in
t
len
;
Py_ssize_
t
len
;
PyObject
*
d
,
*
v
;
char
namebuf
[
MAX_PATH
+
5
];
HDIR
hdir
=
1
;
...
...
@@ -1899,7 +1901,7 @@ posix__getfullpathname(PyObject *self, PyObject *args)
/* assume encoded strings wont more than double no of chars */
char
inbuf
[
MAX_PATH
*
2
];
char
*
inbufp
=
inbuf
;
int
insize
=
sizeof
(
inbuf
)
/
sizeof
(
inbuf
[
0
])
;
Py_ssize_t
insize
;
char
outbuf
[
MAX_PATH
*
2
];
char
*
temp
;
#ifdef Py_WIN_WIDE_FILENAMES
...
...
@@ -1919,6 +1921,7 @@ posix__getfullpathname(PyObject *self, PyObject *args)
PyErr_Clear
();
}
#endif
/* XXX(twouters) Why use 'et#' here at all? insize isn't used */
if
(
!
PyArg_ParseTuple
(
args
,
"et#:_getfullpathname"
,
Py_FileSystemDefaultEncoding
,
&
inbufp
,
&
insize
))
...
...
@@ -5590,16 +5593,18 @@ Write a string to a file descriptor.");
static
PyObject
*
posix_write
(
PyObject
*
self
,
PyObject
*
args
)
{
int
fd
,
size
;
int
fd
;
Py_ssize_t
size
;
char
*
buffer
;
if
(
!
PyArg_ParseTuple
(
args
,
"is#:write"
,
&
fd
,
&
buffer
,
&
size
))
return
NULL
;
Py_BEGIN_ALLOW_THREADS
size
=
write
(
fd
,
buffer
,
size
);
size
=
write
(
fd
,
buffer
,
(
size_t
)
size
);
Py_END_ALLOW_THREADS
if
(
size
<
0
)
return
posix_error
();
return
PyInt_From
Long
((
long
)
size
);
return
PyInt_From
Ssize_t
(
size
);
}
...
...
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