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
72e731cc
Kaydet (Commit)
72e731cc
authored
Mar 31, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #13583: sqlite3.Row now supports slice indexing.
Tests by Jessica McKellar.
üst
80d84c89
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
2 deletions
+24
-2
sqlite3.rst
Doc/library/sqlite3.rst
+3
-0
factory.py
Lib/sqlite3/test/factory.py
+18
-0
NEWS
Misc/NEWS
+2
-0
row.c
Modules/_sqlite/row.c
+1
-2
No files found.
Doc/library/sqlite3.rst
Dosyayı görüntüle @
72e731cc
...
...
@@ -649,6 +649,9 @@ Row Objects
This method returns a list of column names. Immediately after a query,
it is the first member of each tuple in :attr:`Cursor.description`.
.. versionchanged:: 3.5
Added support of slicing.
Let's assume we initialize a table as in the example given above::
conn = sqlite3.connect(":memory:")
...
...
Lib/sqlite3/test/factory.py
Dosyayı görüntüle @
72e731cc
...
...
@@ -111,6 +111,24 @@ class RowFactoryTests(unittest.TestCase):
with
self
.
assertRaises
(
IndexError
):
row
[
2
**
1000
]
def
CheckSqliteRowSlice
(
self
):
# A sqlite.Row can be sliced like a list.
self
.
con
.
row_factory
=
sqlite
.
Row
row
=
self
.
con
.
execute
(
"select 1, 2, 3, 4"
)
.
fetchone
()
self
.
assertEqual
(
row
[
0
:
0
],
())
self
.
assertEqual
(
row
[
0
:
1
],
(
1
,))
self
.
assertEqual
(
row
[
1
:
3
],
(
2
,
3
))
self
.
assertEqual
(
row
[
3
:
1
],
())
# Explicit bounds are optional.
self
.
assertEqual
(
row
[
1
:],
(
2
,
3
,
4
))
self
.
assertEqual
(
row
[:
3
],
(
1
,
2
,
3
))
# Slices can use negative indices.
self
.
assertEqual
(
row
[
-
2
:
-
1
],
(
3
,))
self
.
assertEqual
(
row
[
-
2
:],
(
3
,
4
))
# Slicing supports steps.
self
.
assertEqual
(
row
[
0
:
4
:
2
],
(
1
,
3
))
self
.
assertEqual
(
row
[
3
:
0
:
-
2
],
(
4
,
2
))
def
CheckSqliteRowIter
(
self
):
"""Checks if the row object is iterable"""
self
.
con
.
row_factory
=
sqlite
.
Row
...
...
Misc/NEWS
Dosyayı görüntüle @
72e731cc
...
...
@@ -13,6 +13,8 @@ Core and Builtins
Library
-------
- Issue #13583: sqlite3.Row now supports slice indexing.
- Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings. Fixed
ambigious reverse mappings. Added many new mappings. Import mapping is no
longer applied to modules already mapped with full name mapping.
...
...
Modules/_sqlite/row.c
Dosyayı görüntüle @
72e731cc
...
...
@@ -142,8 +142,7 @@ PyObject* pysqlite_row_subscript(pysqlite_Row* self, PyObject* idx)
return
NULL
;
}
else
if
(
PySlice_Check
(
idx
))
{
PyErr_SetString
(
PyExc_ValueError
,
"slices not implemented, yet"
);
return
NULL
;
return
PyObject_GetItem
(
self
->
data
,
idx
);
}
else
{
PyErr_SetString
(
PyExc_IndexError
,
"Index must be int or string"
);
...
...
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