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
6191a235
Kaydet (Commit)
6191a235
authored
Nis 13, 2001
tarafından
Ka-Ping Yee
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use nturl2path to generate a file: URL to source files in Windows.
üst
79fa2b60
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
pydoc.py
Lib/pydoc.py
+7
-3
No files found.
Lib/pydoc.py
Dosyayı görüntüle @
6191a235
...
...
@@ -484,7 +484,11 @@ TT { font-family: lucida typewriter, lucida console, courier }
head
=
'<big><big><strong>
%
s</strong></big></big>'
%
linkedname
try
:
path
=
inspect
.
getabsfile
(
object
)
filelink
=
'<a href="file:
%
s">
%
s</a>'
%
(
path
,
path
)
url
=
path
if
sys
.
platform
==
'win32'
:
import
nturl2path
url
=
nturl2path
.
pathname2url
(
path
)
filelink
=
'<a href="file:
%
s">
%
s</a>'
%
(
url
,
path
)
except
TypeError
:
filelink
=
'(built-in)'
info
=
[]
...
...
@@ -1473,9 +1477,9 @@ class ModuleScanner(Scanner):
return
children
def
isnewpackage
(
self
,
(
dir
,
package
)):
inode
=
os
.
stat
(
dir
)[
1
]
# detect circular symbolic links
inode
=
os
.
path
.
exists
(
dir
)
and
os
.
stat
(
dir
)[
1
]
if
not
(
os
.
path
.
islink
(
dir
)
and
inode
in
self
.
inodes
):
self
.
inodes
.
append
(
inode
)
self
.
inodes
.
append
(
inode
)
# detect circular symbolic links
return
ispackage
(
dir
)
def
run
(
self
,
callback
,
key
=
None
,
completer
=
None
):
...
...
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