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
3460198f
Unverified
Kaydet (Commit)
3460198f
authored
Ock 07, 2018
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Ock 07, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-31802: Fix importing native path module before importing os. (#4017)
üst
e46a8af4
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
42 additions
and
32 deletions
+42
-32
macpath.py
Lib/macpath.py
+12
-11
ntpath.py
Lib/ntpath.py
+12
-11
posixpath.py
Lib/posixpath.py
+12
-10
test_genericpath.py
Lib/test/test_genericpath.py
+4
-0
2017-10-17-14-52-14.bpo-31802.sYj2Zv.rst
...S.d/next/Library/2017-10-17-14-52-14.bpo-31802.sYj2Zv.rst
+2
-0
No files found.
Lib/macpath.py
Dosyayı görüntüle @
3460198f
"""Pathname and path-related operations for the Macintosh."""
# strings representing various path-related bits and pieces
# These are primarily for export; internally, they are hardcoded.
# Should be set before imports for resolving cyclic dependency.
curdir
=
':'
pardir
=
'::'
extsep
=
'.'
sep
=
':'
pathsep
=
'
\n
'
defpath
=
':'
altsep
=
None
devnull
=
'Dev:Null'
import
os
from
stat
import
*
import
genericpath
...
...
@@ -16,17 +28,6 @@ __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
"curdir"
,
"pardir"
,
"sep"
,
"pathsep"
,
"defpath"
,
"altsep"
,
"extsep"
,
"devnull"
,
"realpath"
,
"supports_unicode_filenames"
]
# strings representing various path-related bits and pieces
# These are primarily for export; internally, they are hardcoded.
curdir
=
':'
pardir
=
'::'
extsep
=
'.'
sep
=
':'
pathsep
=
'
\n
'
defpath
=
':'
altsep
=
None
devnull
=
'Dev:Null'
def
_get_colon
(
path
):
if
isinstance
(
path
,
bytes
):
return
b
':'
...
...
Lib/ntpath.py
Dosyayı görüntüle @
3460198f
...
...
@@ -5,6 +5,18 @@ Instead of importing this module directly, import os and refer to this
module as os.path.
"""
# strings representing various path-related bits and pieces
# These are primarily for export; internally, they are hardcoded.
# Should be set before imports for resolving cyclic dependency.
curdir
=
'.'
pardir
=
'..'
extsep
=
'.'
sep
=
'
\\
'
pathsep
=
';'
altsep
=
'/'
defpath
=
'.;C:
\\
bin'
devnull
=
'nul'
import
os
import
sys
import
stat
...
...
@@ -19,17 +31,6 @@ __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
"extsep"
,
"devnull"
,
"realpath"
,
"supports_unicode_filenames"
,
"relpath"
,
"samefile"
,
"sameopenfile"
,
"samestat"
,
"commonpath"
]
# strings representing various path-related bits and pieces
# These are primarily for export; internally, they are hardcoded.
curdir
=
'.'
pardir
=
'..'
extsep
=
'.'
sep
=
'
\\
'
pathsep
=
';'
altsep
=
'/'
defpath
=
'.;C:
\\
bin'
devnull
=
'nul'
def
_get_bothseps
(
path
):
if
isinstance
(
path
,
bytes
):
return
b
'
\\
/'
...
...
Lib/posixpath.py
Dosyayı görüntüle @
3460198f
...
...
@@ -10,6 +10,18 @@ Some of this can actually be useful on non-Posix systems too, e.g.
for manipulation of the pathname component of URLs.
"""
# Strings representing various path-related bits and pieces.
# These are primarily for export; internally, they are hardcoded.
# Should be set before imports for resolving cyclic dependency.
curdir
=
'.'
pardir
=
'..'
extsep
=
'.'
sep
=
'/'
pathsep
=
':'
defpath
=
':/bin:/usr/bin'
altsep
=
None
devnull
=
'/dev/null'
import
os
import
sys
import
stat
...
...
@@ -25,16 +37,6 @@ __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
"devnull"
,
"realpath"
,
"supports_unicode_filenames"
,
"relpath"
,
"commonpath"
]
# Strings representing various path-related bits and pieces.
# These are primarily for export; internally, they are hardcoded.
curdir
=
'.'
pardir
=
'..'
extsep
=
'.'
sep
=
'/'
pathsep
=
':'
defpath
=
':/bin:/usr/bin'
altsep
=
None
devnull
=
'/dev/null'
def
_get_sep
(
path
):
if
isinstance
(
path
,
bytes
):
...
...
Lib/test/test_genericpath.py
Dosyayı görüntüle @
3460198f
...
...
@@ -8,6 +8,7 @@ import sys
import
unittest
import
warnings
from
test
import
support
from
test.support.script_helper
import
assert_python_ok
def
create_file
(
filename
,
data
=
b
'foo'
):
...
...
@@ -486,6 +487,9 @@ class CommonTest(GenericTest):
with
self
.
assertRaisesRegex
(
TypeError
,
'bytearray'
):
self
.
pathmodule
.
relpath
(
bytearray
(
b
'foo'
),
bytearray
(
b
'bar'
))
def
test_import
(
self
):
assert_python_ok
(
'-S'
,
'-c'
,
'import '
+
self
.
pathmodule
.
__name__
)
class
PathLikeTests
(
unittest
.
TestCase
):
...
...
Misc/NEWS.d/next/Library/2017-10-17-14-52-14.bpo-31802.sYj2Zv.rst
0 → 100644
Dosyayı görüntüle @
3460198f
Importing native path module (``posixpath``, ``ntpath``) now works even if
the ``os`` module still is not imported.
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