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
5c87c1a5
Kaydet (Commit)
5c87c1a5
authored
Agu 09, 2010
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix Issue9545 - Adding _collections to static build.
üst
31022301
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
Setup.dist
Modules/Setup.dist
+3
-0
setup.py
setup.py
+0
-6
No files found.
Modules/Setup.dist
Dosyayı görüntüle @
5c87c1a5
...
...
@@ -113,6 +113,9 @@ _sre _sre.c # Fredrik Lundh's new regular expressions
_codecs
_codecsmodule.c
# access to the builtin codecs and codec registry
_weakref
_weakref.c
# weak references
_functools
_functoolsmodule.c
# Tools for working with functions and callable objects
operator
operator.c
# operator.add() and similar goodies
_collections
_collectionsmodule.c
# Container types
itertools
itertoolsmodule.c
# Functions creating iterators for efficient looping
# access to ISO C locale support
_locale
_localemodule.c
# -lintl
...
...
setup.py
Dosyayı görüntüle @
5c87c1a5
...
...
@@ -454,18 +454,12 @@ class PyBuildExt(build_ext):
libraries
=
math_libs
)
)
exts
.
append
(
Extension
(
'_datetime'
,
[
'_datetimemodule.c'
,
'_time.c'
],
libraries
=
math_libs
)
)
# fast iterator tools implemented in C
exts
.
append
(
Extension
(
"itertools"
,
[
"itertoolsmodule.c"
])
)
# random number generator implemented in C
exts
.
append
(
Extension
(
"_random"
,
[
"_randommodule.c"
])
)
# high-performance collections
exts
.
append
(
Extension
(
"_collections"
,
[
"_collectionsmodule.c"
])
)
# bisect
exts
.
append
(
Extension
(
"_bisect"
,
[
"_bisectmodule.c"
])
)
# heapq
exts
.
append
(
Extension
(
"_heapq"
,
[
"_heapqmodule.c"
])
)
# operator.add() and similar goodies
exts
.
append
(
Extension
(
'operator'
,
[
'operator.c'
])
)
# C-optimized pickle replacement
exts
.
append
(
Extension
(
"_pickle"
,
[
"_pickle.c"
])
)
# atexit
...
...
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