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
95f0e4c4
Kaydet (Commit)
95f0e4c4
authored
Nis 01, 2006
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make ssize_t clean
üst
828fdefd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
connection.c
Modules/_sqlite/connection.c
+2
-2
cursor.c
Modules/_sqlite/cursor.c
+1
-1
row.c
Modules/_sqlite/row.c
+2
-2
statement.c
Modules/_sqlite/statement.c
+1
-1
No files found.
Modules/_sqlite/connection.c
Dosyayı görüntüle @
95f0e4c4
...
...
@@ -377,7 +377,7 @@ void _set_result(sqlite3_context* context, PyObject* py_val)
{
long
longval
;
const
char
*
buffer
;
in
t
buflen
;
Py_ssize_
t
buflen
;
PyObject
*
stringval
;
if
(
PyErr_Occurred
())
{
...
...
@@ -416,7 +416,7 @@ PyObject* _build_py_params(sqlite3_context *context, int argc, sqlite3_value** a
PyObject
*
cur_py_value
;
const
char
*
val_str
;
PY_LONG_LONG
val_int
;
in
t
buflen
;
Py_ssize_
t
buflen
;
void
*
raw_buffer
;
args
=
PyTuple_New
(
argc
);
...
...
Modules/_sqlite/cursor.c
Dosyayı görüntüle @
95f0e4c4
...
...
@@ -239,7 +239,7 @@ PyObject* _fetch_one_row(Cursor* self)
PY_LONG_LONG
intval
;
PyObject
*
converter
;
PyObject
*
converted
;
in
t
nbytes
;
Py_ssize_
t
nbytes
;
PyObject
*
buffer
;
void
*
raw_buffer
;
const
char
*
val_str
;
...
...
Modules/_sqlite/row.c
Dosyayı görüntüle @
95f0e4c4
...
...
@@ -126,7 +126,7 @@ PyObject* row_subscript(Row* self, PyObject* idx)
}
}
in
t
row_length
(
Row
*
self
,
PyObject
*
args
,
PyObject
*
kwargs
)
Py_ssize_
t
row_length
(
Row
*
self
,
PyObject
*
args
,
PyObject
*
kwargs
)
{
return
PyTuple_GET_SIZE
(
self
->
data
);
}
...
...
@@ -138,7 +138,7 @@ static int row_print(Row* self, FILE *fp, int flags)
PyMappingMethods
row_as_mapping
=
{
/* mp_length */
(
inquiry
)
row_length
,
/* mp_length */
(
lenfunc
)
row_length
,
/* mp_subscript */
(
binaryfunc
)
row_subscript
,
/* mp_ass_subscript */
(
objobjargproc
)
0
,
};
...
...
Modules/_sqlite/statement.c
Dosyayı görüntüle @
95f0e4c4
...
...
@@ -94,7 +94,7 @@ int statement_bind_parameter(Statement* self, int pos, PyObject* parameter)
#endif
const
char
*
buffer
;
char
*
string
;
in
t
buflen
;
Py_ssize_
t
buflen
;
PyObject
*
stringval
;
if
(
parameter
==
Py_None
)
{
...
...
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