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
8deab967
Kaydet (Commit)
8deab967
authored
Eki 19, 2018
tarafından
David Herberth
Kaydeden (comit)
Victor Stinner
Eki 19, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-34070: open() only checks for isatty if buffering < 0 (GH-8187)
üst
acef6906
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
2018-07-11-20-51-20.bpo-34070.WpmFAu.rst
...S.d/next/Library/2018-07-11-20-51-20.bpo-34070.WpmFAu.rst
+2
-0
_iomodule.c
Modules/_io/_iomodule.c
+3
-3
No files found.
Misc/NEWS.d/next/Library/2018-07-11-20-51-20.bpo-34070.WpmFAu.rst
0 → 100644
Dosyayı görüntüle @
8deab967
Make sure to only check if the handle is a tty, when opening
a file with ``buffering=-1``.
Modules/_io/_iomodule.c
Dosyayı görüntüle @
8deab967
...
...
@@ -241,7 +241,7 @@ _io_open_impl(PyObject *module, PyObject *file, const char *mode,
char
rawmode
[
6
],
*
m
;
int
line_buffering
,
is_number
;
long
isatty
;
long
isatty
=
0
;
PyObject
*
raw
,
*
modeobj
=
NULL
,
*
buffer
,
*
wrapper
,
*
result
=
NULL
,
*
path_or_fd
=
NULL
;
...
...
@@ -388,7 +388,7 @@ _io_open_impl(PyObject *module, PyObject *file, const char *mode,
goto
error
;
/* buffering */
{
if
(
buffering
<
0
)
{
PyObject
*
res
=
_PyObject_CallMethodId
(
raw
,
&
PyId_isatty
,
NULL
);
if
(
res
==
NULL
)
goto
error
;
...
...
@@ -398,7 +398,7 @@ _io_open_impl(PyObject *module, PyObject *file, const char *mode,
goto
error
;
}
if
(
buffering
==
1
||
(
buffering
<
0
&&
isatty
)
)
{
if
(
buffering
==
1
||
isatty
)
{
buffering
=
-
1
;
line_buffering
=
1
;
}
...
...
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