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
225821c6
Kaydet (Commit)
225821c6
authored
Ara 18, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #25899: Converted non-ASCII characters in docstrings and manpage
to ASCII replacements. Original patch by Chris Angelico.
üst
29e2aa69
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
connection.py
Lib/multiprocessing/connection.py
+1
-1
python.man
Misc/python.man
+1
-1
marshal.c
Python/marshal.c
+2
-2
No files found.
Lib/multiprocessing/connection.py
Dosyayı görüntüle @
225821c6
...
...
@@ -397,7 +397,7 @@ class Connection(_ConnectionBase):
self
.
_send
(
header
)
self
.
_send
(
buf
)
else
:
# Issue #
20540: concatenate before sending, to avoid delays due
# Issue #20540: concatenate before sending, to avoid delays due
# to Nagle's algorithm on a TCP socket.
# Also note we want to avoid sending a 0-length buffer separately,
# to avoid "broken pipe" errors if the other end closed the pipe.
...
...
Misc/python.man
Dosyayı görüntüle @
225821c6
...
...
@@ -143,7 +143,7 @@ raises an exception.
.TP
.B \-I
Run Python in isolated mode. This also implies \fB\-E\fP and \fB\-s\fP. In
isolated mode sys.path contains neither the script
’s directory nor the user’
s
isolated mode sys.path contains neither the script
's directory nor the user'
s
site-packages directory. All PYTHON* environment variables are ignored, too.
Further restrictions may be imposed to prevent the user from injecting
malicious code.
...
...
Python/marshal.c
Dosyayı görüntüle @
225821c6
...
...
@@ -1644,7 +1644,7 @@ The file must be an open file object such as sys.stdout or returned by\n\
open() or os.popen(). It must be opened in binary mode ('wb' or 'w+b').
\n
\
\n
\
If the value has (or contains an object that has) an unsupported type, a
\n
\
ValueError exception is raised
—
but garbage data will also be written
\n
\
ValueError exception is raised
-
but garbage data will also be written
\n
\
to the file. The object will not be properly read back by load()
\n
\
\n
\
The version argument indicates the data format that dump should use."
);
...
...
@@ -1695,7 +1695,7 @@ PyDoc_STRVAR(load_doc,
"load(file)
\n
\
\n
\
Read one value from the open file and return it. If no valid value is
\n
\
read (e.g. because the data has a different Python version
’
s
\n
\
read (e.g. because the data has a different Python version
'
s
\n
\
incompatible marshal format), raise EOFError, ValueError or TypeError.
\n
\
The file must be an open file object opened in binary mode ('rb' or
\n
\
'r+b').
\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