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
ccc63b1d
Kaydet (Commit)
ccc63b1d
authored
Haz 11, 2008
tarafından
Alexandre Vassalotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added Windows build config for _stringio and _pickle.
üst
66b343b6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
4 deletions
+16
-4
pythoncore.vcproj
PC/VS8.0/pythoncore.vcproj
+12
-4
config.c
PC/config.c
+4
-0
No files found.
PC/VS8.0/pythoncore.vcproj
Dosyayı görüntüle @
ccc63b1d
...
...
@@ -986,10 +986,18 @@
RelativePath=
"..\..\Modules\_fileio.c"
>
</File>
<File
^M
RelativePath=
"..\..\Modules\_bytesio.c"
^M
>
^M
</File>
^M
<File
RelativePath=
"..\..\Modules\_bytesio.c"
>
</File>
<File
RelativePath=
"..\..\Modules\_stringio.c"
>
</File>
<File
RelativePath=
"..\..\Modules\_pickle.c"
>
</File>
<File
RelativePath=
"..\..\Modules\_functoolsmodule.c"
>
...
...
PC/config.c
Dosyayı görüntüle @
ccc63b1d
...
...
@@ -60,6 +60,8 @@ extern PyObject* PyInit__lsprof(void);
extern
PyObject
*
PyInit__ast
(
void
);
extern
PyObject
*
PyInit__fileio
(
void
);
extern
PyObject
*
PyInit__bytesio
(
void
);
extern
PyObject
*
PyInit__stringio
(
void
);
extern
PyObject
*
PyInit__pickle
(
void
);
extern
PyObject
*
PyInit_atexit
(
void
);
extern
PyObject
*
_PyWarnings_Init
(
void
);
...
...
@@ -150,6 +152,8 @@ struct _inittab _PyImport_Inittab[] = {
{
"_fileio"
,
PyInit__fileio
},
{
"_bytesio"
,
PyInit__bytesio
},
{
"_stringio"
,
PyInit__stringio
},
{
"_pickle"
,
PyInit__pickle
},
{
"atexit"
,
PyInit_atexit
},
/* Sentinel */
...
...
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