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
72f3b7a5
Kaydet (Commit)
72f3b7a5
authored
Ara 13, 2002
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added missing casts.
üst
747c3d3f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
import.c
Python/import.c
+2
-2
pythonrun.c
Python/pythonrun.c
+2
-2
No files found.
Python/import.c
Dosyayı görüntüle @
72f3b7a5
...
...
@@ -2339,7 +2339,7 @@ imp_set_frozenmodules(PyObject *self, PyObject *args)
goto
typeerror
;
frozenmodules
[
i
].
name
=
PyString_AsString
(
name
);
if
(
PyObject_IsTrue
(
code
))
{
frozenmodules
[
i
].
code
=
PyString_AsString
(
code
);
frozenmodules
[
i
].
code
=
(
unsigned
char
*
)
PyString_AsString
(
code
);
frozenmodules
[
i
].
size
=
PyString_Size
(
code
);
}
else
{
frozenmodules
[
i
].
code
=
NULL
;
...
...
@@ -2407,7 +2407,7 @@ imp_get_frozenmodules(PyObject *self, PyObject *args)
Py_INCREF
(
ob
);
PyTuple_SET_ITEM
(
item
,
0
,
ob
);
if
(
p
->
code
!=
NULL
)
{
ob
=
PyString_FromStringAndSize
(
p
->
code
,
ob
=
PyString_FromStringAndSize
(
(
char
*
)
p
->
code
,
p
->
size
>=
0
?
p
->
size
:
-
(
p
->
size
));
if
(
ob
==
NULL
)
goto
error
;
...
...
Python/pythonrun.c
Dosyayı görüntüle @
72f3b7a5
...
...
@@ -618,8 +618,8 @@ maybe_pyc_file(FILE *fp, const char* filename, const char* ext, int closeit)
#ifdef macintosh
/* On a mac, we also assume a pyc file for types 'PYC ' and 'APPL' */
if
(
PyMac_getfiletype
(
filename
)
==
'
PYC
'
||
PyMac_getfiletype
(
filename
)
==
'
APPL
'
)
if
(
PyMac_getfiletype
(
(
char
*
)
filename
)
==
'
PYC
'
||
PyMac_getfiletype
(
(
char
*
)
filename
)
==
'
APPL
'
)
return
1
;
#endif
/* macintosh */
...
...
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