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
b3af1813
Kaydet (Commit)
b3af1813
authored
Kas 08, 2003
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Convert heapq.py to a C implementation.
üst
1021c44b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
1 deletion
+10
-1
test___all__.py
Lib/test/test___all__.py
+0
-1
NEWS
Misc/NEWS
+2
-0
heapqmodule.c
Modules/heapqmodule.c
+0
-0
config.c
PC/config.c
+2
-0
pythoncore.dsp
PCbuild/pythoncore.dsp
+4
-0
setup.py
setup.py
+2
-0
No files found.
Lib/test/test___all__.py
Dosyayı görüntüle @
b3af1813
...
@@ -100,7 +100,6 @@ class AllTest(unittest.TestCase):
...
@@ -100,7 +100,6 @@ class AllTest(unittest.TestCase):
self
.
check_all
(
"glob"
)
self
.
check_all
(
"glob"
)
self
.
check_all
(
"gopherlib"
)
self
.
check_all
(
"gopherlib"
)
self
.
check_all
(
"gzip"
)
self
.
check_all
(
"gzip"
)
self
.
check_all
(
"heapq"
)
self
.
check_all
(
"htmllib"
)
self
.
check_all
(
"htmllib"
)
self
.
check_all
(
"httplib"
)
self
.
check_all
(
"httplib"
)
self
.
check_all
(
"ihooks"
)
self
.
check_all
(
"ihooks"
)
...
...
Misc/NEWS
Dosyayı görüntüle @
b3af1813
...
@@ -104,6 +104,8 @@ Extension modules
...
@@ -104,6 +104,8 @@ Extension modules
Library
Library
-------
-------
-
heapq
.
py
has
been
converted
to
C
for
improved
performance
-
traceback
.
format_exc
has
been
added
(
similar
to
print_exc
but
it
returns
-
traceback
.
format_exc
has
been
added
(
similar
to
print_exc
but
it
returns
a
string
).
a
string
).
...
...
Lib/heapq.py
→
Modules/heapqmodule.c
Dosyayı görüntüle @
b3af1813
This diff is collapsed.
Click to expand it.
PC/config.c
Dosyayı görüntüle @
b3af1813
...
@@ -46,6 +46,7 @@ extern void initxxsubtype(void);
...
@@ -46,6 +46,7 @@ extern void initxxsubtype(void);
extern
void
initzipimport
(
void
);
extern
void
initzipimport
(
void
);
extern
void
init_random
(
void
);
extern
void
init_random
(
void
);
extern
void
inititertools
(
void
);
extern
void
inititertools
(
void
);
extern
void
initheapq
(
void
);
/* tools/freeze/makeconfig.py marker for additional "extern" */
/* tools/freeze/makeconfig.py marker for additional "extern" */
/* -- ADDMODULE MARKER 1 -- */
/* -- ADDMODULE MARKER 1 -- */
...
@@ -98,6 +99,7 @@ struct _inittab _PyImport_Inittab[] = {
...
@@ -98,6 +99,7 @@ struct _inittab _PyImport_Inittab[] = {
{
"_weakref"
,
init_weakref
},
{
"_weakref"
,
init_weakref
},
{
"_hotshot"
,
init_hotshot
},
{
"_hotshot"
,
init_hotshot
},
{
"_random"
,
init_random
},
{
"_random"
,
init_random
},
{
"heapq"
,
initheapq
},
{
"itertools"
,
inititertools
},
{
"itertools"
,
inititertools
},
{
"xxsubtype"
,
initxxsubtype
},
{
"xxsubtype"
,
initxxsubtype
},
...
...
PCbuild/pythoncore.dsp
Dosyayı görüntüle @
b3af1813
...
@@ -298,6 +298,10 @@ SOURCE=..\Parser\grammar1.c
...
@@ -298,6 +298,10 @@ SOURCE=..\Parser\grammar1.c
# End Source File
# End Source File
# Begin Source File
# Begin Source File
SOURCE=..\Modules\heapqmodule.c
# End Source File
# Begin Source File
SOURCE=..\Modules\imageop.c
SOURCE=..\Modules\imageop.c
# End Source File
# End Source File
# Begin Source File
# Begin Source File
...
...
setup.py
Dosyayı görüntüle @
b3af1813
...
@@ -322,6 +322,8 @@ class PyBuildExt(build_ext):
...
@@ -322,6 +322,8 @@ class PyBuildExt(build_ext):
exts
.
append
(
Extension
(
"_random"
,
[
"_randommodule.c"
])
)
exts
.
append
(
Extension
(
"_random"
,
[
"_randommodule.c"
])
)
# fast iterator tools implemented in C
# fast iterator tools implemented in C
exts
.
append
(
Extension
(
"itertools"
,
[
"itertoolsmodule.c"
])
)
exts
.
append
(
Extension
(
"itertools"
,
[
"itertoolsmodule.c"
])
)
# heapq
exts
.
append
(
Extension
(
"heapq"
,
[
"heapqmodule.c"
])
)
# operator.add() and similar goodies
# operator.add() and similar goodies
exts
.
append
(
Extension
(
'operator'
,
[
'operator.c'
])
)
exts
.
append
(
Extension
(
'operator'
,
[
'operator.c'
])
)
# Python C API test module
# Python C API test module
...
...
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