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
0e928584
Kaydet (Commit)
0e928584
authored
Mar 28, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
give os.symlink and os.link() better parameter names #5564
üst
a31aa45f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
os.rst
Doc/library/os.rst
+6
-4
string.rst
Doc/library/string.rst
+1
-0
No files found.
Doc/library/os.rst
Dosyayı görüntüle @
0e928584
...
...
@@ -924,9 +924,10 @@ Files and Directories
.. versionadded:: 2.3
.. function:: link(s
rc, dst
)
.. function:: link(s
ource, link_name
)
Create a hard link pointing to *src* named *dst*. Availability: Unix.
Create a hard link pointing to *source* named *link_name*. Availability:
Unix.
.. function:: listdir(path)
...
...
@@ -1246,9 +1247,10 @@ Files and Directories
Added access to values as attributes of the returned object.
.. function:: symlink(s
rc, dst
)
.. function:: symlink(s
ource, link_name
)
Create a symbolic link pointing to *src* named *dst*. Availability: Unix.
Create a symbolic link pointing to *source* named *link_name*. Availability:
Unix.
.. function:: tempnam([dir[, prefix]])
...
...
Doc/library/string.rst
Dosyayı görüntüle @
0e928584
...
...
@@ -243,6 +243,7 @@ does an index lookup using :func:`__getitem__`.
Some simple format string examples::
"First, thou shalt count to {0}" # References first positional argument
"Bring me a {}" # Implicitly references the first positional argument
"My quest is {name}" # References keyword argument 'name'
"Weight in tons {0.weight}" # 'weight' attribute of first positional arg
"Units destroyed: {players[0]}" # First element of keyword argument 'players'.
...
...
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