Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

bpo-24905: Support BLOB incremental I/O in sqlite module #271

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 18 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix CR comments in code
  • Loading branch information
palaviv committed Aug 3, 2020
commit 9709456b864e48e1cc3a3e838b311806a9ca6acb
2 changes: 1 addition & 1 deletion 2 Modules/_sqlite/connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ PyObject* pysqlite_connection_blob(pysqlite_Connection *self, PyObject *args,
PyObject *kwargs)
{
static char *kwlist[] = {"table", "column", "row", "readonly",
"dbname", NULL, NULL};
"dbname", NULL};
int rc;
const char *dbname = "main", *table, *column;
long long row;
Expand Down
2 changes: 1 addition & 1 deletion 2 Modules/_sqlite/connection.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ typedef struct

pysqlite_Cache* statement_cache;

/* Lists of weak references to statements, blobs and cursors used within this connection */
/* Lists of weak references to statements, cursors and blobs used within this connection */
PyObject* statements;
PyObject* cursors;
PyObject* blobs;
Expand Down
3 changes: 2 additions & 1 deletion 3 setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1524,7 +1524,8 @@ def detect_sqlite(self):
'_sqlite/row.c',
'_sqlite/statement.c',
'_sqlite/util.c',
'_sqlite/blob.c' ]
'_sqlite/blob.c',
]

sqlite_defines = []
if not MS_WINDOWS:
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.