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
ee365ac2
Kaydet (Commit)
ee365ac2
authored
Tem 28, 2012
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #15431: Declare PyImport_FrozenModules conditionally on Unix only.
üst
e3010a8d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
_freeze_importlib.c
Modules/_freeze_importlib.c
+9
-2
No files found.
Modules/_freeze_importlib.c
Dosyayı görüntüle @
ee365ac2
...
...
@@ -21,6 +21,13 @@ static struct _frozen _PyImport_FrozenModules[] = {
{
0
,
0
,
0
}
/* sentinel */
};
#ifndef MS_WINDOWS
/* On Windows, this links with the regular pythonXY.dll, so this variable comes
from frozen.obj. In the Makefile, frozen.o is not linked into this executable,
so we define the variable here. */
struct
_frozen
*
PyImport_FrozenModules
;
#endif
const
char
header
[]
=
"/* Auto-generated by Modules/_freeze_importlib.c */"
;
int
...
...
@@ -91,8 +98,8 @@ main(int argc, char *argv[])
data_size
=
PyBytes_GET_SIZE
(
marshalled
);
/* Open the file in text mode. The hg checkout should be using the eol extension,
which in turn should cause the
existing file to use CRLF
*/
outfile
=
fopen
(
outpath
,
"w
t
"
);
which in turn should cause the
EOL style match the C library's text mode
*/
outfile
=
fopen
(
outpath
,
"w"
);
if
(
outfile
==
NULL
)
{
fprintf
(
stderr
,
"cannot open '%s' for writing
\n
"
,
outpath
);
return
1
;
...
...
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