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
21d896cf
Kaydet (Commit)
21d896cf
authored
Tem 01, 2003
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use appropriate macros not the deprecated DL_IMPORT/DL_EXPORT macros
üst
59aba128
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
pyerrors.h
Include/pyerrors.h
+1
-1
stringobject.h
Include/stringobject.h
+1
-1
bz2module.c
Modules/bz2module.c
+1
-1
readline.c
Modules/readline.c
+2
-2
No files found.
Include/pyerrors.h
Dosyayı görüntüle @
21d896cf
...
...
@@ -63,7 +63,7 @@ PyAPI_DATA(PyObject *) PyExc_ZeroDivisionError;
PyAPI_DATA
(
PyObject
*
)
PyExc_WindowsError
;
#endif
#ifdef __VMS
extern
DL_IMPORT
(
PyObject
*
)
PyExc_VMSError
;
PyAPI_DATA
(
PyObject
*
)
PyExc_VMSError
;
#endif
PyAPI_DATA
(
PyObject
*
)
PyExc_MemoryErrorInst
;
...
...
Include/stringobject.h
Dosyayı görüntüle @
21d896cf
...
...
@@ -65,7 +65,7 @@ PyAPI_FUNC(int) _PyString_Eq(PyObject *, PyObject*);
PyAPI_FUNC
(
PyObject
*
)
PyString_Format
(
PyObject
*
,
PyObject
*
);
PyAPI_FUNC
(
PyObject
*
)
_PyString_FormatLong
(
PyObject
*
,
int
,
int
,
int
,
char
**
,
int
*
);
extern
DL_IMPORT
(
PyObject
*
)
PyString_DecodeEscape
(
const
char
*
,
int
,
PyAPI_FUNC
(
PyObject
*
)
PyString_DecodeEscape
(
const
char
*
,
int
,
const
char
*
,
int
,
const
char
*
);
...
...
Modules/bz2module.c
Dosyayı görüntüle @
21d896cf
...
...
@@ -2167,7 +2167,7 @@ interface, one shot (de)compression functions, and types for\n\
sequential (de)compression.
\n
\
"
);
DL_EXPORT
(
void
)
PyMODINIT_FUNC
initbz2
(
void
)
{
PyObject
*
m
;
...
...
Modules/readline.c
Dosyayı görüntüle @
21d896cf
...
...
@@ -32,8 +32,8 @@
#endif
/* Pointers needed from outside (but not declared in a header file). */
extern
DL_IMPORT
(
int
)
(
*
PyOS_InputHook
)(
void
);
extern
DL_IMPORT
(
char
)
*
(
*
PyOS_ReadlineFunctionPointer
)(
FILE
*
,
FILE
*
,
char
*
);
PyAPI_FUNC
(
int
)
(
*
PyOS_InputHook
)(
void
);
PyAPI_FUNC
(
char
)
*
(
*
PyOS_ReadlineFunctionPointer
)(
FILE
*
,
FILE
*
,
char
*
);
/* Exported function to send one line to readline's init file parser */
...
...
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