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
0d2a75c7
Kaydet (Commit)
0d2a75c7
authored
Agu 09, 2004
tarafından
Jason Tishler
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1006003: Cygwin standard module build problems
Add missing PyAPI_FUNC/PyAPI_DATA macros.
üst
7f203b84
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
pystrtod.h
Include/pystrtod.h
+3
-3
pythonrun.h
Include/pythonrun.h
+1
-0
No files found.
Include/pystrtod.h
Dosyayı görüntüle @
0d2a75c7
...
...
@@ -6,9 +6,9 @@ extern "C" {
#endif
double
PyOS_ascii_strtod
(
const
char
*
str
,
char
**
ptr
);
double
PyOS_ascii_atof
(
const
char
*
str
);
char
*
PyOS_ascii_formatd
(
char
*
buffer
,
int
buf_len
,
const
char
*
format
,
double
d
);
PyAPI_FUNC
(
double
)
PyOS_ascii_strtod
(
const
char
*
str
,
char
**
ptr
);
PyAPI_FUNC
(
double
)
PyOS_ascii_atof
(
const
char
*
str
);
PyAPI_FUNC
(
char
*
)
PyOS_ascii_formatd
(
char
*
buffer
,
int
buf_len
,
const
char
*
format
,
double
d
);
#ifdef __cplusplus
...
...
Include/pythonrun.h
Dosyayı görüntüle @
0d2a75c7
...
...
@@ -121,6 +121,7 @@ PyAPI_FUNC(void) PyOS_FiniInterrupts(void);
PyAPI_FUNC
(
char
*
)
PyOS_Readline
(
FILE
*
,
FILE
*
,
char
*
);
PyAPI_DATA
(
int
)
(
*
PyOS_InputHook
)(
void
);
PyAPI_DATA
(
char
)
*
(
*
PyOS_ReadlineFunctionPointer
)(
FILE
*
,
FILE
*
,
char
*
);
PyAPI_DATA
(
PyThreadState
*
)
_PyOS_ReadlineTState
;
/* Stack size, in "pointers" (so we get extra safety margins
on 64-bit platforms). On a 32-bit platform, this translates
...
...
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