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
4c86ec65
Kaydet (Commit)
4c86ec65
authored
Ara 14, 2005
tarafından
Fredrik Lundh
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
added cElementTree/_elementtree build stuff and wrapper module
üst
9ed73060
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
cElementTree.py
Lib/xmlcore/etree/cElementTree.py
+3
-0
setup.py
setup.py
+11
-0
No files found.
Lib/xmlcore/etree/cElementTree.py
0 → 100644
Dosyayı görüntüle @
4c86ec65
# Wrapper module for _elementtree
from
_elementtree
import
*
setup.py
Dosyayı görüntüle @
4c86ec65
...
...
@@ -841,6 +841,17 @@ class PyBuildExt(build_ext):
],
))
# Fredrik Lundh's cElementTree module. Note that this also
# uses expat (via the CAPI hook in pyexpat).
if
os
.
path
.
isfile
(
'Modules/_elementtree.c'
):
define_macros
.
append
((
'USE_PYEXPAT_CAPI'
,
None
))
exts
.
append
(
Extension
(
'_elementtree'
,
define_macros
=
define_macros
,
include_dirs
=
[
expatinc
],
sources
=
[
'_elementtree.c'
],
))
# Hye-Shik Chang's CJKCodecs modules.
if
have_unicode
:
exts
.
append
(
Extension
(
'_multibytecodec'
,
...
...
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