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
addfe0c0
Kaydet (Commit)
addfe0c0
authored
Kas 10, 2002
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make private functions static so we don't pollute the namespace
üst
3ae84b63
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
_sre.c
Modules/_sre.c
+2
-1
ceval.c
Python/ceval.c
+1
-1
No files found.
Modules/_sre.c
Dosyayı görüntüle @
addfe0c0
...
...
@@ -353,7 +353,8 @@ mark_restore(SRE_STATE* state, int lo, int hi)
return
0
;
}
void
lastmark_restore
(
SRE_STATE
*
state
,
int
lastmark
)
static
void
lastmark_restore
(
SRE_STATE
*
state
,
int
lastmark
)
{
if
(
state
->
lastmark
>
lastmark
)
{
memset
(
...
...
Python/ceval.c
Dosyayı görüntüle @
addfe0c0
...
...
@@ -3197,7 +3197,7 @@ PyEval_GetFuncDesc(PyObject *func)
#define EXT_POP(STACK_POINTER) (*--(STACK_POINTER))
void
static
void
err_args
(
PyObject
*
func
,
int
flags
,
int
nargs
)
{
if
(
flags
&
METH_NOARGS
)
...
...
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