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
a31bf18c
Kaydet (Commit)
a31bf18c
authored
Nis 09, 2006
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
glob('anything*/') would fail because isdir is in os.path, not os.
üst
e0bb597d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
glob.py
Lib/glob.py
+1
-1
test_glob.py
Lib/test/test_glob.py
+8
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/glob.py
Dosyayı görüntüle @
a31bf18c
...
...
@@ -60,7 +60,7 @@ def glob0(dirname, basename):
if
basename
==
''
:
# `os.path.split()` returns an empty basename for paths ending with a
# directory separator. 'q*x/' should match only directories.
if
os
.
isdir
(
dirname
):
if
os
.
path
.
isdir
(
dirname
):
return
[
basename
]
else
:
if
os
.
path
.
lexists
(
os
.
path
.
join
(
dirname
,
basename
)):
...
...
Lib/test/test_glob.py
Dosyayı görüntüle @
a31bf18c
...
...
@@ -80,6 +80,14 @@ class GlobTests(unittest.TestCase):
eq
(
self
.
glob
(
'?a?'
,
'*F'
),
map
(
self
.
norm
,
[
os
.
path
.
join
(
'aaa'
,
'zzzF'
),
os
.
path
.
join
(
'aab'
,
'F'
)]))
def
test_glob_directory_with_trailing_slash
(
self
):
# We are verifying that when there is wildcard pattern which
# ends with os.sep doesn't blow up.
res
=
glob
.
glob
(
self
.
tempdir
+
'*'
+
os
.
sep
)
self
.
assertEqual
(
len
(
res
),
1
)
# either of these results are reasonable
self
.
assertTrue
(
res
[
0
]
in
[
self
.
tempdir
,
self
.
tempdir
+
os
.
sep
])
def
test_glob_broken_symlinks
(
self
):
if
hasattr
(
os
,
'symlink'
):
eq
=
self
.
assertSequencesEqual_noorder
...
...
Misc/NEWS
Dosyayı görüntüle @
a31bf18c
...
...
@@ -20,6 +20,8 @@ Extension Modules
Library
-------
- Fix exception when doing glob.glob('
anything
*/
')
Build
-----
...
...
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