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
762681b5
Kaydet (Commit)
762681b5
authored
Haz 12, 2008
tarafından
Amaury Forgeot d'Arc
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Slowly apply part of #2065: py3k can be compiled with VS8.0
üst
6166717f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
socketmodule.c
Modules/socketmodule.c
+4
-0
pyconfig.h
PC/pyconfig.h
+2
-2
No files found.
Modules/socketmodule.c
Dosyayı görüntüle @
762681b5
...
...
@@ -5001,8 +5001,12 @@ PyInit__socket(void)
PyModule_AddIntConstant
(
m
,
"RCVALL_OFF"
,
RCVALL_OFF
);
PyModule_AddIntConstant
(
m
,
"RCVALL_ON"
,
RCVALL_ON
);
PyModule_AddIntConstant
(
m
,
"RCVALL_SOCKETLEVELONLY"
,
RCVALL_SOCKETLEVELONLY
);
#ifdef RCVALL_IPLEVEL
PyModule_AddIntConstant
(
m
,
"RCVALL_IPLEVEL"
,
RCVALL_IPLEVEL
);
#endif
#ifdef RCVALL_MAX
PyModule_AddIntConstant
(
m
,
"RCVALL_MAX"
,
RCVALL_MAX
);
#endif
#endif
/* _MSTCPIP_ */
/* Initialize gethostbyname lock */
...
...
PC/pyconfig.h
Dosyayı görüntüle @
762681b5
...
...
@@ -158,11 +158,11 @@ WIN32 is still required for the locale module.
/* set the version macros for the windows headers */
#ifdef MS_WINX64
/* 64 bit only runs on XP or greater */
#define Py_WINVER
_WIN32_WINNT_WINXP
#define Py_WINVER
0x0501
/* _WIN32_WINNT_WINXP */
#define Py_NTDDI NTDDI_WINXP
#else
/* Python 2.6+ requires Windows 2000 or greater */
#define Py_WINVER
_WIN32_WINNT_WIN2K
#define Py_WINVER
0x0500
/* _WIN32_WINNT_WIN2K */
#define Py_NTDDI NTDDI_WIN2KSP4
#endif
...
...
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