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
3f7beb99
Kaydet (Commit)
3f7beb99
authored
Ock 11, 2013
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#13934: document sqlite version strings, use correct one in test.
üst
b5231292
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
sqlite3.rst
Doc/library/sqlite3.rst
+22
-0
hooks.py
Lib/sqlite3/test/hooks.py
+2
-2
No files found.
Doc/library/sqlite3.rst
Dosyayı görüntüle @
3f7beb99
...
...
@@ -109,6 +109,28 @@ Module functions and constants
------------------------------
.. data:: version
The version number of this module, as a string. This is not the version of
the SQLite library.
.. data:: version_info
The version number of this module, as a tuple of integers. This is not the
version of the SQLite library.
.. data:: sqlite_version
The version number of the run-time SQLite library, as a string.
.. data:: sqlite_version_info
The version number of the run-time SQLite library, as a tuple of integers.
.. data:: PARSE_DECLTYPES
This constant is meant to be used with the *detect_types* parameter of the
...
...
Lib/sqlite3/test/hooks.py
Dosyayı görüntüle @
3f7beb99
...
...
@@ -47,9 +47,9 @@ class CollationTests(unittest.TestCase):
except
sqlite
.
ProgrammingError
as
e
:
pass
@unittest.skipIf
(
sqlite
.
sqlite_version_info
<
(
3
,
2
,
1
),
'old SQLite versions crash on this test'
)
def
CheckCollationIsUsed
(
self
):
if
sqlite
.
version_info
<
(
3
,
2
,
1
):
# old SQLite versions crash on this test
return
def
mycoll
(
x
,
y
):
# reverse order
return
-
((
x
>
y
)
-
(
x
<
y
))
...
...
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