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
0897e0c5
Unverified
Kaydet (Commit)
0897e0c5
authored
Ock 31, 2019
tarafından
Inada Naoki
Kaydeden (comit)
GitHub
Ock 31, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-33504: fix wrong "versionchanged" (GH-11712)
üst
9f3f0931
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
configparser.rst
Doc/library/configparser.rst
+4
-4
No files found.
Doc/library/configparser.rst
Dosyayı görüntüle @
0897e0c5
...
@@ -476,9 +476,9 @@ the :meth:`__init__` options:
...
@@ -476,9 +476,9 @@ the :meth:`__init__` options:
... 'bar': 'y',
... 'bar': 'y',
... 'baz': 'z'}
... 'baz': 'z'}
... })
... })
>>> parser.sections()
# doctest: +SKIP
>>> parser.sections()
['section1', 'section2', 'section3']
['section1', 'section2', 'section3']
>>> [option for option in parser['section3']]
# doctest: +SKIP
>>> [option for option in parser['section3']]
['foo', 'bar', 'baz']
['foo', 'bar', 'baz']
* *allow_no_value*, default value: ``False``
* *allow_no_value*, default value: ``False``
...
@@ -921,7 +921,7 @@ ConfigParser Objects
...
@@ -921,7 +921,7 @@ ConfigParser Objects
providing consistent behavior across the parser: non-string
providing consistent behavior across the parser: non-string
keys and values are implicitly converted to strings.
keys and values are implicitly converted to strings.
.. versionchanged:: 3.
7
.. versionchanged:: 3.
8
The default *dict_type* is :class:`dict`, since it now preserves
The default *dict_type* is :class:`dict`, since it now preserves
insertion order.
insertion order.
...
@@ -1199,7 +1199,7 @@ RawConfigParser Objects
...
@@ -1199,7 +1199,7 @@ RawConfigParser Objects
names, and values via its unsafe ``add_section`` and ``set`` methods,
names, and values via its unsafe ``add_section`` and ``set`` methods,
as well as the legacy ``defaults=`` keyword argument handling.
as well as the legacy ``defaults=`` keyword argument handling.
.. versionchanged:: 3.
7
.. versionchanged:: 3.
8
The default *dict_type* is :class:`dict`, since it now preserves
The default *dict_type* is :class:`dict`, since it now preserves
insertion order.
insertion order.
...
...
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