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
2bad9702
Kaydet (Commit)
2bad9702
authored
Agu 27, 2007
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make some internal functions static
üst
908c871e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
bytesobject.c
Objects/bytesobject.c
+3
-3
pythonrun.c
Python/pythonrun.c
+1
-1
No files found.
Objects/bytesobject.c
Dosyayı görüntüle @
2bad9702
...
...
@@ -75,7 +75,7 @@ bytes_releasebuffer(PyBytesObject *obj, PyBuffer *view)
obj
->
ob_exports
--
;
}
Py_ssize_t
static
Py_ssize_t
_getbuffer
(
PyObject
*
obj
,
PyBuffer
*
view
)
{
PyBufferProcs
*
buffer
=
Py_Type
(
obj
)
->
tp_as_buffer
;
...
...
@@ -2534,7 +2534,7 @@ bytes_remove(PyBytesObject *self, PyObject *arg)
/* XXX These two helpers could be optimized if argsize == 1 */
Py_ssize_t
static
Py_ssize_t
lstrip_helper
(
unsigned
char
*
myptr
,
Py_ssize_t
mysize
,
void
*
argptr
,
Py_ssize_t
argsize
)
{
...
...
@@ -2544,7 +2544,7 @@ lstrip_helper(unsigned char *myptr, Py_ssize_t mysize,
return
i
;
}
Py_ssize_t
static
Py_ssize_t
rstrip_helper
(
unsigned
char
*
myptr
,
Py_ssize_t
mysize
,
void
*
argptr
,
Py_ssize_t
argsize
)
{
...
...
Python/pythonrun.c
Dosyayı görüntüle @
2bad9702
...
...
@@ -295,7 +295,7 @@ extern void dump_counts(FILE*);
/* Flush stdout and stderr */
void
static
void
flush_std_files
(
void
)
{
PyObject
*
fout
=
PySys_GetObject
(
"stdout"
);
...
...
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