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
a22ae21d
Kaydet (Commit)
a22ae21d
authored
Mar 20, 2014
tarafından
Zachary Ware
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix parameter name in docs for os.makedirs and os.removedirs.
Pointed out by Colin Davis on docs@.
üst
d852e997
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
os.rst
Doc/library/os.rst
+2
-2
os.py
Lib/os.py
+2
-2
No files found.
Doc/library/os.rst
Dosyayı görüntüle @
a22ae21d
...
...
@@ -1607,7 +1607,7 @@ features:
The *dir_fd* argument.
.. function:: makedirs(
path
, mode=0o777, exist_ok=False)
.. function:: makedirs(
name
, mode=0o777, exist_ok=False)
.. index::
single: directory; creating
...
...
@@ -1763,7 +1763,7 @@ features:
The *dir_fd* argument.
.. function:: removedirs(
path
)
.. function:: removedirs(
name
)
.. index:: single: directory; deleting
...
...
Lib/os.py
Dosyayı görüntüle @
a22ae21d
...
...
@@ -216,7 +216,7 @@ def _get_masked_mode(mode):
# (Inspired by Eric Raymond; the doc strings are mostly his)
def
makedirs
(
name
,
mode
=
0
o777
,
exist_ok
=
False
):
"""makedirs(
path
[, mode=0o777][, exist_ok=False])
"""makedirs(
name
[, mode=0o777][, exist_ok=False])
Super-mkdir; create a leaf directory and all intermediate ones.
Works like mkdir, except that any intermediate path segment (not
...
...
@@ -260,7 +260,7 @@ def makedirs(name, mode=0o777, exist_ok=False):
raise
def
removedirs
(
name
):
"""removedirs(
path
)
"""removedirs(
name
)
Super-rmdir; remove a leaf directory and all empty intermediate
ones. Works like rmdir except that, if the leaf directory is
...
...
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