]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Remove creation of a list for row_cast_map in pysqlite_cursor_init() (GH-8494)
authorSergey Fedoseev <fedoseev.sergey@gmail.com>
Mon, 30 Jul 2018 21:11:50 +0000 (02:11 +0500)
committerBerker Peksag <berker.peksag@gmail.com>
Mon, 30 Jul 2018 21:11:50 +0000 (00:11 +0300)
commitb229b072a9e972905883da5e9eed1f22ab81c7b7
tree66456488e4bea2a077ec33587d3fa39e4ae6bc88
parent9045199c5aaeac9b52537581be127d999b5944ee
Remove creation of a list for row_cast_map in pysqlite_cursor_init() (GH-8494)

This list is never used: if detect_types is on, this list will be
replaced with another one before row_cast_map is used, if
detect_types is off, row_cast_map is not used at all.
Modules/_sqlite/cursor.c