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
2167e29d
Kaydet (Commit)
2167e29d
authored
Şub 12, 2014
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
whatsnew: os.path.samestat on windows, keyword defaults evaluation order.
üst
db2d8a4c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
os.path.rst
Doc/library/os.path.rst
+1
-1
3.4.rst
Doc/whatsnew/3.4.rst
+10
-2
No files found.
Doc/library/os.path.rst
Dosyayı görüntüle @
2167e29d
...
@@ -251,7 +251,7 @@ the :mod:`glob` module.)
...
@@ -251,7 +251,7 @@ the :mod:`glob` module.)
.. function:: samefile(path1, path2)
.. function:: samefile(path1, path2)
Return ``True`` if both pathname arguments refer to the same file or directory.
Return ``True`` if both pathname arguments refer to the same file or directory.
On Unix, t
his is determined by the device number and i-node number and raises an
T
his is determined by the device number and i-node number and raises an
exception if a :func:`os.stat` call on either pathname fails.
exception if a :func:`os.stat` call on either pathname fails.
Availability: Unix, Windows.
Availability: Unix, Windows.
...
...
Doc/whatsnew/3.4.rst
Dosyayı görüntüle @
2167e29d
...
@@ -955,6 +955,10 @@ the :func:`multiprocessing.cpu_count` function (which is now implemented in
...
@@ -955,6 +955,10 @@ the :func:`multiprocessing.cpu_count` function (which is now implemented in
terms of the new :mod:`os` function). (Contributed by Trent Nelson, Yogesh
terms of the new :mod:`os` function). (Contributed by Trent Nelson, Yogesh
Chaudhari, Victor Stinner, and Charles-François Natali in :issue:`17914`.)
Chaudhari, Victor Stinner, and Charles-François Natali in :issue:`17914`.)
:func:`os.path.samestat` is now available on the Windows platform (and the
:func:`os.path.samefile` implementation is now shared between Unix and
Windows). (Contributed by Brian Curtin in :issue:`11939`.)
pdb
pdb
---
---
...
@@ -1752,9 +1756,13 @@ Changes in the Python API
...
@@ -1752,9 +1756,13 @@ Changes in the Python API
special method returned one. This now raises a :exc:`TypeError`.
special method returned one. This now raises a :exc:`TypeError`.
(:issue:`16290`.)
(:issue:`16290`.)
* The :class:`int` constructor in 3.2 and 3.3 erroneously accept :class:`float`
* The :class:`int` constructor in 3.2 and 3.3 erroneously accept
s
:class:`float`
values for the *base* parameter. It is unlikely anyone was doing this, but
values for the *base* parameter. It is unlikely anyone was doing this, but
if so, it will now raise a :exc:`TypeError` (:issue:`16772`).
if so, it will now raise a :exc:`TypeError` (:issue:`16772`).
* Defaults for keyword-only arguments are now evaluated *after* defaults for
regular keyword arguments, instead of before. Hopefully no one wrote any
code that depends on the previous buggy behavior (:issue:`16967`).
Changes in the C API
Changes in the C API
...
...
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