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
3e1e97a9
Kaydet (Commit)
3e1e97a9
authored
Tem 25, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
#16937: merge with 3.3.
üst
6f08d30a
61b0c672
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
4 deletions
+7
-4
cmdline.rst
Doc/using/cmdline.rst
+2
-2
ACKS
Misc/ACKS
+1
-0
python.man
Misc/python.man
+2
-1
main.c
Modules/main.c
+2
-1
No files found.
Doc/using/cmdline.rst
Dosyayı görüntüle @
3e1e97a9
...
...
@@ -274,8 +274,8 @@ Miscellaneous options
.. cmdoption:: -u
Force the binary layer of the std
in, std
out and stderr streams (which is
available as their ``buffer`` attribute) to be unbuffered.
The text I/O
Force the binary layer of the stdout and stderr streams (which is
available as their ``buffer`` attribute) to be unbuffered. The text I/O
layer will still be line-buffered if writing to the console, or
block-buffered if redirected to a non-interactive file.
...
...
Misc/ACKS
Dosyayı görüntüle @
3e1e97a9
...
...
@@ -921,6 +921,7 @@ Tim O'Malley
Zooko O'Whielacronx
Aaron Oakley
James Oakley
Elena Oat
Jon Oberheide
Pascal Oberndoerfer
Jeffrey Ollie
...
...
Misc/python.man
Dosyayı görüntüle @
3e1e97a9
...
...
@@ -172,7 +172,8 @@ that it entails. Also disable these manipulations if
is explicitly imported later.
.TP
.B \-u
Force the binary I/O layers of stdin, stdout and stderr to be unbuffered.
Force the binary I/O layers of stdout and stderr to be unbuffered.
stdin is always buffered.
The text I/O layer will still be line-buffered.
.\" Note that there is internal buffering in readlines() and
.\" file-object iterators ("for line in sys.stdin") which is not
...
...
Modules/main.c
Dosyayı görüntüle @
3e1e97a9
...
...
@@ -73,7 +73,8 @@ static char *usage_2 = "\
-S : don't imply 'import site' on initialization
\n
\
"
;
static
char
*
usage_3
=
"\
-u : unbuffered binary stdout and stderr; also PYTHONUNBUFFERED=x
\n
\
-u : unbuffered binary stdout and stderr, stdin always buffered;
\n
\
also PYTHONUNBUFFERED=x
\n
\
see man page for details on internal buffering relating to '-u'
\n
\
-v : verbose (trace import statements); also PYTHONVERBOSE=x
\n
\
can be supplied multiple times to increase verbosity
\n
\
...
...
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