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
7bea2347
Kaydet (Commit)
7bea2347
authored
Haz 12, 2016
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #27190: Raise NotSupportedError if sqlite3 is older than 3.3.1
Patch by Dave Sawyer.
üst
c415440f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
0 deletions
+13
-0
dbapi.py
Lib/sqlite3/test/dbapi.py
+6
-0
NEWS
Misc/NEWS
+3
-0
connection.c
Modules/_sqlite/connection.c
+4
-0
No files found.
Lib/sqlite3/test/dbapi.py
Dosyayı görüntüle @
7bea2347
...
...
@@ -180,6 +180,12 @@ class ConnectionTests(unittest.TestCase):
with
self
.
assertRaises
(
sqlite
.
OperationalError
):
cx
.
execute
(
'insert into test(id) values(1)'
)
def
CheckSameThreadErrorOnOldVersion
(
self
):
if
sqlite
.
sqlite_version_info
>=
(
3
,
3
,
1
):
self
.
skipTest
(
'test needs sqlite3 versions older than 3.3.1'
)
with
self
.
assertRaises
(
sqlite
.
NotSupportedError
)
as
cm
:
sqlite
.
connect
(
':memory:'
,
check_same_thread
=
False
)
self
.
assertEqual
(
str
(
cm
.
exception
),
'shared connections not available'
)
class
CursorTests
(
unittest
.
TestCase
):
def
setUp
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
7bea2347
...
...
@@ -10,6 +10,9 @@ Release date: tba
Core and Builtins
-----------------
- Issue #27190: Raise NotSupportedError if sqlite3 is older than 3.3.1.
Patch by Dave Sawyer.
- Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. Calling
function with generalized unpacking (PEP 448) and conflicting keyword names
could cause undefined behavior.
...
...
Modules/_sqlite/connection.c
Dosyayı görüntüle @
7bea2347
...
...
@@ -164,6 +164,10 @@ int pysqlite_connection_init(pysqlite_Connection* self, PyObject* args, PyObject
#ifdef WITH_THREAD
self
->
thread_ident
=
PyThread_get_thread_ident
();
#endif
if
(
!
check_same_thread
&&
sqlite3_libversion_number
()
<
3003001
)
{
PyErr_SetString
(
pysqlite_NotSupportedError
,
"shared connections not available"
);
return
-
1
;
}
self
->
check_same_thread
=
check_same_thread
;
self
->
function_pinboard
=
PyDict_New
();
...
...
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