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
11db64e5
Kaydet (Commit)
11db64e5
authored
Kas 15, 2009
tarafından
Nick Coghlan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #7328: don't corrupt sys.path when running pydoc with the -m switch
üst
ccd5e02d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
pydoc.py
Lib/pydoc.py
+7
-5
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/pydoc.py
Dosyayı görüntüle @
11db64e5
...
@@ -2254,11 +2254,13 @@ def cli():
...
@@ -2254,11 +2254,13 @@ def cli():
import
getopt
import
getopt
class
BadUsage
:
pass
class
BadUsage
:
pass
# Scripts don't get the current directory in their path by default.
# Scripts don't get the current directory in their path by default
scriptdir
=
os
.
path
.
dirname
(
sys
.
argv
[
0
])
# unless they are run with the '-m' switch
if
scriptdir
in
sys
.
path
:
if
''
not
in
sys
.
path
:
sys
.
path
.
remove
(
scriptdir
)
scriptdir
=
os
.
path
.
dirname
(
sys
.
argv
[
0
])
sys
.
path
.
insert
(
0
,
'.'
)
if
scriptdir
in
sys
.
path
:
sys
.
path
.
remove
(
scriptdir
)
sys
.
path
.
insert
(
0
,
'.'
)
try
:
try
:
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
'gk:p:w'
)
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
'gk:p:w'
)
...
...
Misc/NEWS
Dosyayı görüntüle @
11db64e5
...
@@ -429,6 +429,8 @@ Core and Builtins
...
@@ -429,6 +429,8 @@ Core and Builtins
Library
Library
-------
-------
- Issue #7328: pydoc no longer corrupts sys.path when run with the '-m' switch
- Issue #2054: ftplib now provides an FTP_TLS class to do secure FTP using
- Issue #2054: ftplib now provides an FTP_TLS class to do secure FTP using
TLS or SSL. Patch by Giampaolo Rodola'.
TLS or SSL. Patch by Giampaolo Rodola'.
...
...
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