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
dd355000
Kaydet (Commit)
dd355000
authored
Eki 17, 2012
tarafından
Trent Nelson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge heads.
üst
ecbe2a91
e60983e4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
4 deletions
+7
-4
inputoutput.rst
Doc/tutorial/inputoutput.rst
+1
-1
cmdline.rst
Doc/using/cmdline.rst
+4
-2
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+0
-0
comparecodecs.py
Tools/unicode/comparecodecs.py
+1
-1
No files found.
Doc/tutorial/inputoutput.rst
Dosyayı görüntüle @
dd355000
...
...
@@ -184,7 +184,7 @@ square brackets ``'[]'`` to access the keys ::
>>> table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 8637678}
>>> print('Jack: {0[Jack]:d}; Sjoerd: {0[Sjoerd]:d}; '
'Dcab: {0[Dcab]:d}'.format(table))
...
'Dcab: {0[Dcab]:d}'.format(table))
Jack: 4098; Sjoerd: 4127; Dcab: 8637678
This could also be done by passing the table as keyword arguments with the '**'
...
...
Doc/using/cmdline.rst
Dosyayı görüntüle @
dd355000
...
...
@@ -380,7 +380,10 @@ Options you shouldn't use
Environment variables
---------------------
These environment variables influence Python's behavior.
These environment variables influence Python's behavior, they are processed
before the command-line switches other than -E. It is customary that
command-line switches override environmental variables where there is a
conflict.
.. envvar:: PYTHONHOME
...
...
@@ -577,4 +580,3 @@ if Python was configured with the ``--with-pydebug`` build option.
If set, Python will print memory allocation statistics every time a new
object arena is created, and on shutdown.
Misc/ACKS
Dosyayı görüntüle @
dd355000
...
...
@@ -997,6 +997,7 @@ Hugo van Rossum
Saskia van Rossum
Donald Wallace Rouse II
Liam Routt
Todd Rovito
Craig Rowland
Clinton Roy
Paul Rubin
...
...
Misc/NEWS
Dosyayı görüntüle @
dd355000
This diff is collapsed.
Click to expand it.
Tools/unicode/comparecodecs.py
Dosyayı görüntüle @
dd355000
...
...
@@ -30,7 +30,7 @@ def compare_codecs(encoding1, encoding2):
mismatch
+=
1
# Check decoding
for
i
in
range
(
256
):
c
=
chr
(
i
)
c
=
bytes
([
i
]
)
try
:
u1
=
c
.
decode
(
encoding1
)
except
UnicodeError
:
...
...
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