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
294c9d90
Kaydet (Commit)
294c9d90
authored
May 17, 2009
tarafından
Tarek Ziadé
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
removed sys.platform == 'mac' usage in distutils.dir_util
üst
016828d1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
11 deletions
+14
-11
dir_util.py
Lib/distutils/dir_util.py
+4
-7
test_dir_util.py
Lib/distutils/tests/test_dir_util.py
+10
-4
No files found.
Lib/distutils/dir_util.py
Dosyayı görüntüle @
294c9d90
...
...
@@ -212,14 +212,11 @@ def remove_tree (directory, verbose=1, dry_run=0):
exc
,
"error removing
%
s: "
%
directory
))
def
ensure_relative
(
path
):
def
ensure_relative
(
path
):
"""Take the full path 'path', and make it a relative path so
it can be the second argument to os.path.join().
"""
drive
,
path
=
os
.
path
.
splitdrive
(
path
)
if
sys
.
platform
==
'mac'
:
return
os
.
sep
+
path
else
:
if
path
[
0
:
1
]
==
os
.
sep
:
path
=
drive
+
path
[
1
:]
return
path
if
path
[
0
:
1
]
==
os
.
sep
:
path
=
drive
+
path
[
1
:]
return
path
Lib/distutils/tests/test_dir_util.py
Dosyayı görüntüle @
294c9d90
...
...
@@ -3,10 +3,8 @@ import unittest
import
os
import
shutil
from
distutils.dir_util
import
mkpath
from
distutils.dir_util
import
remove_tree
from
distutils.dir_util
import
create_tree
from
distutils.dir_util
import
copy_tree
from
distutils.dir_util
import
(
mkpath
,
remove_tree
,
create_tree
,
copy_tree
,
ensure_relative
)
from
distutils
import
log
from
distutils.tests
import
support
...
...
@@ -85,6 +83,14 @@ class DirUtilTestCase(support.TempdirManager, unittest.TestCase):
remove_tree
(
self
.
root_target
,
verbose
=
0
)
remove_tree
(
self
.
target2
,
verbose
=
0
)
def
test_ensure_relative
(
self
):
if
os
.
sep
==
'/'
:
self
.
assertEquals
(
ensure_relative
(
'/home/foo'
),
'home/foo'
)
self
.
assertEquals
(
ensure_relative
(
'some/path'
),
'some/path'
)
else
:
# \\
self
.
assertEquals
(
ensure_relative
(
'c:
\\
home
\\
foo'
),
'home
\\
foo'
)
self
.
assertEquals
(
ensure_relative
(
'home
\\
foo'
),
'home
\\
foo'
)
def
test_suite
():
return
unittest
.
makeSuite
(
DirUtilTestCase
)
...
...
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