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
3b965a23
Kaydet (Commit)
3b965a23
authored
Mar 13, 2013
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
expose O_PATH if possible
üst
fe1c471c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
0 deletions
+6
-0
os.rst
Doc/library/os.rst
+1
-0
NEWS
Misc/NEWS
+2
-0
posixmodule.c
Modules/posixmodule.c
+3
-0
No files found.
Doc/library/os.rst
Dosyayı görüntüle @
3b965a23
...
...
@@ -1137,6 +1137,7 @@ or `the MSDN <http://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Window
O_DIRECTORY
O_NOFOLLOW
O_NOATIME
O_PATH
These constants are GNU extensions and not present if they are not defined by
the C library.
...
...
Misc/NEWS
Dosyayı görüntüle @
3b965a23
...
...
@@ -277,6 +277,8 @@ Core and Builtins
Library
-------
-
Expose
the
O_PATH
constant
in
the
os
module
if
it
is
available
.
-
Issue
#
17368
:
Fix
an
off
-
by
-
one
error
in
the
Python
JSON
decoder
that
caused
a
failure
while
decoding
empty
object
literals
when
object_pairs_hook
was
specified
.
...
...
Modules/posixmodule.c
Dosyayı görüntüle @
3b965a23
...
...
@@ -10858,6 +10858,9 @@ all_ins(PyObject *d)
#ifdef O_SEARCH
if
(
ins
(
d
,
"O_SEARCH"
,
(
long
)
O_SEARCH
))
return
-
1
;
#endif
#ifdef O_PATH
if
(
ins
(
d
,
"O_PATH"
,
(
long
)
O_PATH
))
return
-
1
;
#endif
#ifdef O_TTY_INIT
if
(
ins
(
d
,
"O_TTY_INIT"
,
(
long
)
O_TTY_INIT
))
return
-
1
;
#endif
...
...
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