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
01b08836
Kaydet (Commit)
01b08836
authored
May 08, 2015
tarafından
Larry Hastings
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #20274: Remove ignored and erroneous "kwargs" parameters from three
METH_VARARGS methods on _sqlite.Connection.
üst
7e63b36f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
NEWS
Misc/NEWS
+3
-0
connection.c
Modules/_sqlite/connection.c
+3
-3
No files found.
Misc/NEWS
Dosyayı görüntüle @
01b08836
...
...
@@ -10,6 +10,9 @@ Release date: tba
Core and Builtins
-----------------
- Issue #20274: Remove ignored and erroneous "kwargs" parameters from three
METH_VARARGS methods on _sqlite.Connection.
- Issue #24096: Make warnings.warn_explicit more robust against mutation of the
warnings.filters list.
...
...
Modules/_sqlite/connection.c
Dosyayı görüntüle @
01b08836
...
...
@@ -1287,7 +1287,7 @@ error:
return
NULL
;
}
PyObject
*
pysqlite_connection_execute
(
pysqlite_Connection
*
self
,
PyObject
*
args
,
PyObject
*
kwargs
)
PyObject
*
pysqlite_connection_execute
(
pysqlite_Connection
*
self
,
PyObject
*
args
)
{
PyObject
*
cursor
=
0
;
PyObject
*
result
=
0
;
...
...
@@ -1316,7 +1316,7 @@ error:
return
cursor
;
}
PyObject
*
pysqlite_connection_executemany
(
pysqlite_Connection
*
self
,
PyObject
*
args
,
PyObject
*
kwargs
)
PyObject
*
pysqlite_connection_executemany
(
pysqlite_Connection
*
self
,
PyObject
*
args
)
{
PyObject
*
cursor
=
0
;
PyObject
*
result
=
0
;
...
...
@@ -1345,7 +1345,7 @@ error:
return
cursor
;
}
PyObject
*
pysqlite_connection_executescript
(
pysqlite_Connection
*
self
,
PyObject
*
args
,
PyObject
*
kwargs
)
PyObject
*
pysqlite_connection_executescript
(
pysqlite_Connection
*
self
,
PyObject
*
args
)
{
PyObject
*
cursor
=
0
;
PyObject
*
result
=
0
;
...
...
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