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
39b0f897
Kaydet (Commit)
39b0f897
authored
Nis 10, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Address warnings issued by the MSVC++ compiler
üst
462a5495
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
5 deletions
+4
-5
pcremodule.c
Modules/pcremodule.c
+0
-1
pypcre.c
Modules/pypcre.c
+2
-2
import.c
Python/import.c
+1
-1
mystrtoul.c
Python/mystrtoul.c
+1
-1
No files found.
Modules/pcremodule.c
Dosyayı görüntüle @
39b0f897
...
...
@@ -193,7 +193,6 @@ PyPcre_compile(self, args)
PyObject
*
dictionary
;
char
*
pattern
;
const
char
*
error
;
int
num_zeros
,
i
,
j
;
int
options
,
erroroffset
;
if
(
!
PyArg_ParseTuple
(
args
,
"siO!"
,
&
pattern
,
&
options
,
...
...
Modules/pypcre.c
Dosyayı görüntüle @
39b0f897
...
...
@@ -3044,8 +3044,8 @@ if (md->off_num) free(md->off_num);
if
(
md
->
offset_top
)
free
(
md
->
offset_top
);
if
(
md
->
r1
)
free
(
md
->
r1
);
if
(
md
->
r2
)
free
(
md
->
r2
);
if
(
md
->
eptr
)
free
(
md
->
eptr
);
if
(
md
->
ecode
)
free
(
md
->
ecode
);
if
(
md
->
eptr
)
free
(
(
char
*
)
md
->
eptr
);
if
(
md
->
ecode
)
free
(
(
char
*
)
md
->
ecode
);
return
0
;
}
...
...
Python/import.c
Dosyayı görüntüle @
39b0f897
...
...
@@ -858,7 +858,7 @@ find_module(name, path, buf, buflen, p_fp)
}
else
if
(
PyString_Check
(
path
))
{
/* Submodule of frozen package */
if
(
PyString_Size
(
path
)
+
1
+
strlen
(
name
)
>=
buflen
)
{
if
(
PyString_Size
(
path
)
+
1
+
strlen
(
name
)
>=
(
unsigned
int
)
buflen
)
{
PyErr_SetString
(
PyExc_ImportError
,
"full frozen module name too long"
);
return
NULL
;
...
...
Python/mystrtoul.c
Dosyayı görüntüle @
39b0f897
...
...
@@ -129,7 +129,7 @@ int base;
result
=
result
*
base
+
c
;
#ifndef MPW
if
(
base
==
10
)
{
if
(((
long
)(
result
-
c
)
/
base
!=
temp
))
/* overflow */
if
(((
long
)(
result
-
c
)
/
base
!=
(
long
)
temp
))
/* overflow */
ovf
=
1
;
}
else
{
...
...
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