Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
01b08836
Commit
01b08836
authored
May 08, 2015
by
Larry Hastings
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #20274: Remove ignored and erroneous "kwargs" parameters from three
METH_VARARGS methods on _sqlite.Connection.
parent
7e63b36f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
Misc/NEWS
Misc/NEWS
+3
-0
Modules/_sqlite/connection.c
Modules/_sqlite/connection.c
+3
-3
No files found.
Misc/NEWS
View file @
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
View file @
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