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
9af13ca5
Kaydet (Commit)
9af13ca5
authored
Eyl 11, 2016
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #28036: Remove unused pysqlite_flush_statement_cache function
üst
966ad74b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
20 deletions
+0
-20
connection.c
Modules/_sqlite/connection.c
+0
-20
No files found.
Modules/_sqlite/connection.c
Dosyayı görüntüle @
9af13ca5
...
...
@@ -202,26 +202,6 @@ int pysqlite_connection_init(pysqlite_Connection* self, PyObject* args, PyObject
return
0
;
}
/* Empty the entire statement cache of this connection */
void
pysqlite_flush_statement_cache
(
pysqlite_Connection
*
self
)
{
pysqlite_Node
*
node
;
pysqlite_Statement
*
statement
;
node
=
self
->
statement_cache
->
first
;
while
(
node
)
{
statement
=
(
pysqlite_Statement
*
)(
node
->
data
);
(
void
)
pysqlite_statement_finalize
(
statement
);
node
=
node
->
next
;
}
Py_SETREF
(
self
->
statement_cache
,
(
pysqlite_Cache
*
)
PyObject_CallFunction
((
PyObject
*
)
&
pysqlite_CacheType
,
"O"
,
self
));
Py_DECREF
(
self
);
self
->
statement_cache
->
decref_factory
=
0
;
}
/* action in (ACTION_RESET, ACTION_FINALIZE) */
void
pysqlite_do_all_statements
(
pysqlite_Connection
*
self
,
int
action
,
int
reset_cursors
)
{
...
...
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