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
0b4915e9
Kaydet (Commit)
0b4915e9
authored
Nis 25, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
install idle and pydoc with a 3 suffix #5756
üst
f4841e2d
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
9 deletions
+8
-9
NEWS
Misc/NEWS
+5
-0
idle3
Tools/scripts/idle3
+1
-1
pydoc3
Tools/scripts/pydoc3
+1
-1
setup.py
setup.py
+1
-7
No files found.
Misc/NEWS
Dosyayı görüntüle @
0b4915e9
...
...
@@ -76,6 +76,11 @@ Core and Builtins
- Issue #1113244: Py_XINCREF, Py_DECREF, Py_XDECREF: Add `do { ... } while (0)'
to avoid compiler warnings.
Installation
------------
- Issue #5756: Install idle and pydoc with a 3 suffix.
Library
-------
...
...
Tools/scripts/idle
→
Tools/scripts/idle
3
Dosyayı görüntüle @
0b4915e9
#! /usr/bin/env python
#! /usr/bin/env python
3
from
idlelib.PyShell
import
main
if
__name__
==
'__main__'
:
...
...
Tools/scripts/pydoc
→
Tools/scripts/pydoc
3
Dosyayı görüntüle @
0b4915e9
#!/usr/bin/env python
#!/usr/bin/env python
3
import
pydoc
if
__name__
==
'__main__'
:
...
...
setup.py
Dosyayı görüntüle @
0b4915e9
...
...
@@ -1652,13 +1652,7 @@ def main():
# called unless there's at least one extension module defined.
ext_modules
=
[
Extension
(
'_struct'
,
[
'_struct.c'
])],
# Scripts to install
# Commented out because we don't want them to override the 2.x
# ones. See #1590.
scripts
=
[]
#scripts = ['Tools/scripts/pydoc', 'Tools/scripts/idle',
# 'Tools/scripts/2to3',
# 'Lib/smtpd.py']
scripts
=
[
"Tools/scripts/pydoc3"
,
"Tools/scripts/idle3"
]
)
# --install-platlib
...
...
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