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
5180123a
Kaydet (Commit)
5180123a
authored
Ock 02, 2003
tarafından
Andrew MacIntyre
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bring structure closer to std config.c, whitespace normalisation
üst
3c5bfbed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
30 deletions
+44
-30
config.c
PC/os2emx/config.c
+44
-30
No files found.
PC/os2emx/config.c
Dosyayı görüntüle @
5180123a
...
...
@@ -36,32 +36,38 @@ PERFORMANCE OF THIS SOFTWARE.
#include "Python.h"
extern
void
initos2
();
extern
void
initsignal
();
#ifdef WITH_THREAD
extern
void
initthread
();
#endif
#if !HAVE_DYNAMIC_LOADING
extern
void
init_codecs
();
extern
void
init_curses
();
extern
void
init_curses_panel
();
extern
void
init_hotshot
();
extern
void
init_locale
();
extern
void
init_
socket
();
extern
void
init_
random
();
extern
void
init_sre
();
extern
void
init_symtable
();
extern
void
init_testcapi
();
extern
void
init_weakref
();
extern
void
initarray
();
extern
void
initbinascii
();
extern
void
initbsddb
();
extern
void
initbsddb185
();
extern
void
initbz2
();
extern
void
initcPickle
();
extern
void
initcStringIO
();
extern
void
initcmath
();
extern
void
initdatetime
();
extern
void
initdl
();
extern
void
initerrno
();
extern
void
initfcntl
();
extern
void
initfpectl
();
extern
void
initfpetest
();
extern
void
initgc
();
extern
void
initimageop
();
extern
void
initmath
();
extern
void
initmd5
();
extern
void
initnew
();
extern
void
initos2
();
extern
void
initoperator
();
extern
void
initparser
();
extern
void
initpcre
();
...
...
@@ -69,32 +75,34 @@ extern void initpwd();
extern
void
initregex
();
extern
void
initrgbimg
();
extern
void
initrotor
();
extern
void
initselect
();
extern
void
initsha
();
extern
void
initsignal
();
extern
void
initstrop
();
extern
void
initstruct
();
extern
void
inittermios
();
extern
void
initthread
();
extern
void
inittime
();
extern
void
inittiming
();
extern
void
initunicodedata
();
extern
void
initxreadlines
();
extern
void
initxxsubtype
();
extern
void
initzipimport
();
extern
void
initzlib
();
#ifdef USE_SOCKET
extern
void
init_socket
();
extern
void
initselect
();
#endif
#endif
/* -- ADDMODULE MARKER 1 -- */
extern
void
PyMarshal_Init
();
extern
void
initimp
();
extern
void
initgc
();
struct
_inittab
_PyImport_Inittab
[]
=
{
{
"gc"
,
initgc
},
{
"os2"
,
initos2
},
{
"signal"
,
initsignal
},
{
"os2"
,
initos2
},
{
"signal"
,
initsignal
},
#ifdef WITH_THREAD
{
"thread"
,
initthread
},
{
"thread"
,
initthread
},
#endif
#if !HAVE_DYNAMIC_LOADING
{
"_codecs"
,
init_codecs
},
...
...
@@ -102,15 +110,19 @@ struct _inittab _PyImport_Inittab[] = {
{
"_curses_panel"
,
init_curses_panel
},
{
"_hotshot"
,
init_hotshot
},
{
"_locale"
,
init_locale
},
{
"_sre"
,
init_sre
},
{
"_random"
,
init_random
},
{
"_sre"
,
init_sre
},
{
"_symtable"
,
init_symtable
},
{
"_testcapi"
,
init_testcapi
},
{
"_weakref"
,
init_weakref
},
{
"array"
,
initarray
},
{
"binascii"
,
initbinascii
},
{
"bsddb"
,
initbsddb
},
{
"bsddb185"
,
initbsddb185
},
{
"bz2"
,
initbz2
},
{
"cPickle"
,
initcPickle
},
{
"cStringIO"
,
initcStringIO
},
{
"cmath"
,
initcmath
},
{
"datetime"
,
initdatetime
},
{
"dl"
,
initdl
},
{
"errno"
,
initerrno
},
{
"fcntl"
,
initfcntl
},
...
...
@@ -119,7 +131,6 @@ struct _inittab _PyImport_Inittab[] = {
{
"imageop"
,
initimageop
},
{
"math"
,
initmath
},
{
"md5"
,
initmd5
},
{
"new"
,
initnew
},
{
"operator"
,
initoperator
},
{
"parser"
,
initparser
},
{
"pcre"
,
initpcre
},
...
...
@@ -136,27 +147,30 @@ struct _inittab _PyImport_Inittab[] = {
{
"unicodedata"
,
initunicodedata
},
{
"xreadlines"
,
initxreadlines
},
{
"xxsubtype"
,
initxxsubtype
},
{
"zipimport"
,
initzipimport
},
{
"zlib"
,
initzlib
},
#ifdef USE_SOCKET
{
"_socket"
,
init_socket
},
{
"select"
,
initselect
},
{
"_socket"
,
init_socket
},
{
"select"
,
initselect
},
#endif
#endif
/* -- ADDMODULE MARKER 2 -- */
/* This module "lives in" with marshal.c */
{
"marshal"
,
PyMarshal_Init
},
/* This module "lives in" with marshal.c */
{
"marshal"
,
PyMarshal_Init
},
/* This lives it with import.c */
{
"imp"
,
initimp
},
/* This lives it with import.c */
{
"imp"
,
initimp
},
/* These entries are here for sys.builtin_module_names */
{
"__main__"
,
NULL
},
{
"__builtin__"
,
NULL
},
{
"sys"
,
NULL
},
{
"exceptions"
,
NULL
},
/* These entries are here for sys.builtin_module_names */
{
"__main__"
,
NULL
},
{
"__builtin__"
,
NULL
},
{
"sys"
,
NULL
},
{
"exceptions"
,
NULL
},
/* This lives in gcmodule.c */
{
"gc"
,
initgc
},
/* Sentinel */
{
0
,
0
}
/* Sentinel */
{
0
,
0
}
};
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