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
b4bd21cf
Kaydet (Commit)
b4bd21cf
authored
Tem 22, 2000
tarafından
Thomas Wouters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
ANSIfy as many declarations as possible.
üst
bd8ad942
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
7 deletions
+8
-7
dynload_aix.c
Python/dynload_aix.c
+1
-1
dynload_dl.c
Python/dynload_dl.c
+1
-1
frozenmain.c
Python/frozenmain.c
+3
-3
import.c
Python/import.c
+2
-1
thread_lwp.h
Python/thread_lwp.h
+1
-1
No files found.
Python/dynload_aix.c
Dosyayı görüntüle @
b4bd21cf
...
...
@@ -28,7 +28,7 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#endif
extern
char
*
Py_GetProgramName
();
extern
char
*
Py_GetProgramName
(
void
);
typedef
struct
Module
{
struct
Module
*
next
;
...
...
Python/dynload_dl.c
Dosyayı görüntüle @
b4bd21cf
...
...
@@ -16,7 +16,7 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#include "importdl.h"
extern
char
*
Py_GetProgramName
();
extern
char
*
Py_GetProgramName
(
void
);
const
struct
filedescr
_PyImport_DynLoadFiletab
[]
=
{
{
".o"
,
"rb"
,
C_EXTENSION
},
...
...
Python/frozenmain.c
Dosyayı görüntüle @
b4bd21cf
...
...
@@ -13,9 +13,9 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#include "Python.h"
#ifdef MS_WIN32
extern
void
PyWinFreeze_ExeInit
();
extern
void
PyWinFreeze_ExeTerm
();
extern
int
PyInitFrozenExtensions
();
extern
void
PyWinFreeze_ExeInit
(
void
);
extern
void
PyWinFreeze_ExeTerm
(
void
);
extern
int
PyInitFrozenExtensions
(
void
);
#endif
#ifdef HAVE_UNISTD_H
...
...
Python/import.c
Dosyayı görüntüle @
b4bd21cf
...
...
@@ -817,7 +817,8 @@ is_builtin(char *name)
pathname and an open file. Return NULL if the module is not found. */
#ifdef MS_COREDLL
extern
FILE
*
PyWin_FindRegisteredModule
();
extern
FILE
*
PyWin_FindRegisteredModule
(
const
char
*
,
struct
filedescr
**
,
char
*
,
int
);
#endif
#ifdef CHECK_IMPORT_CASE
...
...
Python/thread_lwp.h
Dosyayı görüntüle @
b4bd21cf
...
...
@@ -106,7 +106,7 @@ void PyThread__exit_prog(int status)
PyThread_type_lock
PyThread_allocate_lock
(
void
)
{
struct
lock
*
lock
;
extern
char
*
malloc
();
extern
char
*
malloc
(
size_t
);
dprintf
((
"PyThread_allocate_lock called
\n
"
));
if
(
!
initialized
)
...
...
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