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
43ca4528
Kaydet (Commit)
43ca4528
authored
Agu 30, 2016
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #27842: The csv.DictReader now returns rows of type OrderedDict.
üst
15f44ab0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
45 additions
and
16 deletions
+45
-16
csv.rst
Doc/library/csv.rst
+24
-15
csv.py
Lib/csv.py
+2
-1
test_csv.py
Lib/test/test_csv.py
+16
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Doc/library/csv.rst
Dosyayı görüntüle @
43ca4528
...
...
@@ -149,18 +149,25 @@ The :mod:`csv` module defines the following classes:
.. class:: DictReader(csvfile, fieldnames=None, restkey=None, restval=None, \
dialect='excel', *args, **kwds)
Create an object which operates like a regular reader but maps the
information read into a dict whose keys are given by the optional
*fieldnames* parameter. The *fieldnames* parameter is a :mod:`sequence
<collections.abc>` whose elements are associated with the fields of the
input data in order. These elements become the keys of the resulting
dictionary. If the *fieldnames* parameter is omitted, the values in the
first row of the *csvfile* will be used as the fieldnames. If the row read
has more fields than the fieldnames sequence, the remaining data is added as
a sequence keyed by the value of *restkey*. If the row read has fewer
fields than the fieldnames sequence, the remaining keys take the value of
the optional *restval* parameter. Any other optional or keyword arguments
are passed to the underlying :class:`reader` instance.
Create an object that operates like a regular reader but maps the
information in each row to an :mod:`OrderedDict <collections.OrderedDict>`
whose keys are given by the optional *fieldnames* parameter.
The *fieldnames* parameter is a :term:`sequence`. If *fieldnames* is
omitted, the values in the first row of the *csvfile* will be used as the
fieldnames. Regardless of how the fieldnames are determined, the ordered
dictionary preserves their original ordering.
If a row has more fields than fieldnames, the remaining data is put in a
list and stored with the fieldname specified by *restkey* (which defaults
to ``None``). If a non-blank row has fewer fields than fieldnames, the
missing values are filled-in with ``None``.
All other optional or keyword arguments are passed to the underlying
:class:`reader` instance.
.. versionchanged:: 3.6
Returned rows are now of type :class:`OrderedDict`.
A short usage example::
...
...
@@ -170,9 +177,11 @@ The :mod:`csv` module defines the following classes:
... for row in reader:
... print(row['first_name'], row['last_name'])
...
Baked Beans
Lovely Spam
Wonderful Spam
Eric Idle
John Cleese
>>> print(row)
OrderedDict([('first_name', 'John'), ('last_name', 'Cleese')])
.. class:: DictWriter(csvfile, fieldnames, restval='', extrasaction='raise', \
...
...
Lib/csv.py
Dosyayı görüntüle @
43ca4528
...
...
@@ -11,6 +11,7 @@ from _csv import Error, __version__, writer, reader, register_dialect, \
__doc__
from
_csv
import
Dialect
as
_Dialect
from
collections
import
OrderedDict
from
io
import
StringIO
__all__
=
[
"QUOTE_MINIMAL"
,
"QUOTE_ALL"
,
"QUOTE_NONNUMERIC"
,
"QUOTE_NONE"
,
...
...
@@ -116,7 +117,7 @@ class DictReader:
# values
while
row
==
[]:
row
=
next
(
self
.
reader
)
d
=
d
ict
(
zip
(
self
.
fieldnames
,
row
))
d
=
OrderedD
ict
(
zip
(
self
.
fieldnames
,
row
))
lf
=
len
(
self
.
fieldnames
)
lr
=
len
(
row
)
if
lf
<
lr
:
...
...
Lib/test/test_csv.py
Dosyayı görüntüle @
43ca4528
...
...
@@ -10,6 +10,7 @@ import csv
import
gc
import
pickle
from
test
import
support
from
itertools
import
permutations
class
Test_Csv
(
unittest
.
TestCase
):
"""
...
...
@@ -1092,6 +1093,21 @@ class TestUnicode(unittest.TestCase):
fileobj
.
seek
(
0
)
self
.
assertEqual
(
fileobj
.
read
(),
expected
)
class
KeyOrderingTest
(
unittest
.
TestCase
):
def
test_ordering_for_the_dict_reader_and_writer
(
self
):
resultset
=
set
()
for
keys
in
permutations
(
"abcde"
):
with
TemporaryFile
(
'w+'
,
newline
=
''
,
encoding
=
"utf-8"
)
as
fileobject
:
dw
=
csv
.
DictWriter
(
fileobject
,
keys
)
dw
.
writeheader
()
fileobject
.
seek
(
0
)
dr
=
csv
.
DictReader
(
fileobject
)
kt
=
tuple
(
dr
.
fieldnames
)
self
.
assertEqual
(
keys
,
kt
)
resultset
.
add
(
kt
)
# Final sanity check: were all permutations unique?
self
.
assertEqual
(
len
(
resultset
),
120
,
"Key ordering: some key permutations not collected (expected 120)"
)
class
MiscTestCase
(
unittest
.
TestCase
):
def
test__all__
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
43ca4528
...
...
@@ -64,6 +64,9 @@ Library
match ``math.inf`` and ``math.nan``, and also ``cmath.infj`` and
``cmath.nanj`` to match the format used by complex repr.
- Issue #27842: The csv.DictReader now returns rows of type OrderedDict.
(Contributed by Steve Holden.)
- Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factory
creates not a cursor. Patch by Xiang Zhang.
...
...
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