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
f68d8e52
Kaydet (Commit)
f68d8e52
authored
Nis 14, 2001
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make some private symbols static.
üst
f85af612
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
7 deletions
+8
-7
posixmodule.c
Modules/posixmodule.c
+1
-1
fileobject.c
Objects/fileobject.c
+2
-2
frameobject.c
Objects/frameobject.c
+1
-1
compile.c
Python/compile.c
+2
-1
exceptions.c
Python/exceptions.c
+2
-2
No files found.
Modules/posixmodule.c
Dosyayı görüntüle @
f68d8e52
...
...
@@ -3836,7 +3836,7 @@ static char posix_strerror__doc__[] =
"strerror(code) -> string
\n
\
Translate an error code to a message string."
;
PyObject
*
static
PyObject
*
posix_strerror
(
PyObject
*
self
,
PyObject
*
args
)
{
int
code
;
...
...
Objects/fileobject.c
Dosyayı görüntüle @
f68d8e52
...
...
@@ -222,7 +222,7 @@ typedef off_t Py_off_t;
/* a portable fseek() function
return 0 on success, non-zero on failure (with errno set) */
int
static
int
_portable_fseek
(
FILE
*
fp
,
Py_off_t
offset
,
int
whence
)
{
#if defined(HAVE_FSEEKO)
...
...
@@ -257,7 +257,7 @@ _portable_fseek(FILE *fp, Py_off_t offset, int whence)
/* a portable ftell() function
Return -1 on failure with errno set appropriately, current file
position on success */
Py_off_t
static
Py_off_t
_portable_ftell
(
FILE
*
fp
)
{
#if SIZEOF_FPOS_T >= 8 && defined(HAVE_LARGEFILE_SUPPORT)
...
...
Objects/frameobject.c
Dosyayı görüntüle @
f68d8e52
...
...
@@ -251,7 +251,7 @@ PyFrame_BlockPop(PyFrameObject *f)
/* Convert between "fast" version of locals and dictionary version */
void
static
void
map_to_dict
(
PyObject
*
map
,
int
nmap
,
PyObject
*
dict
,
PyObject
**
values
,
int
deref
)
{
...
...
Python/compile.c
Dosyayı görüntüle @
f68d8e52
...
...
@@ -374,7 +374,8 @@ struct compiling {
PyFutureFeatures
*
c_future
;
/* pointer to module's __future__ */
};
int
is_free
(
int
v
)
static
int
is_free
(
int
v
)
{
if
((
v
&
(
USE
|
DEF_FREE
))
&&
!
(
v
&
(
DEF_LOCAL
|
DEF_PARAM
|
DEF_GLOBAL
)))
...
...
Python/exceptions.c
Dosyayı görüntüle @
f68d8e52
...
...
@@ -420,7 +420,7 @@ SystemExit__init__(PyObject *self, PyObject *args)
}
PyMethodDef
SystemExit_methods
[]
=
{
static
PyMethodDef
SystemExit_methods
[]
=
{
{
"__init__"
,
SystemExit__init__
,
METH_VARARGS
},
{
NULL
,
NULL
}
};
...
...
@@ -836,7 +836,7 @@ SyntaxError__str__(PyObject *self, PyObject *args)
}
PyMethodDef
SyntaxError_methods
[]
=
{
static
PyMethodDef
SyntaxError_methods
[]
=
{
{
"__init__"
,
SyntaxError__init__
,
METH_VARARGS
},
{
"__str__"
,
SyntaxError__str__
,
METH_VARARGS
},
{
NULL
,
NULL
}
...
...
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