changeset: 104575:17629dee23ca branch: 2.7 parent: 104572:ddf32a646457 user: Martin Panter date: Thu Oct 20 03:56:48 2016 +0000 files: Misc/NEWS Modules/_sqlite/connection.c description: Issue #28480: Avoid label at end of compound statement --without-threads diff -r ddf32a646457 -r 17629dee23ca Misc/NEWS --- a/Misc/NEWS Wed Oct 19 19:37:20 2016 +0300 +++ b/Misc/NEWS Thu Oct 20 03:56:48 2016 +0000 @@ -60,6 +60,9 @@ Library ------- +- Issue #28480: Fix error building _sqlite3 module when multithreading is + disabled. + - Issue #24452: Make webbrowser support Chrome on Mac OS X. - Issue #26293: Fixed writing ZIP files that starts not from the start of the diff -r ddf32a646457 -r 17629dee23ca Modules/_sqlite/connection.c --- a/Modules/_sqlite/connection.c Wed Oct 19 19:37:20 2016 +0300 +++ b/Modules/_sqlite/connection.c Thu Oct 20 03:56:48 2016 +0000 @@ -790,6 +790,7 @@ } error: + ; /* necessary for --without-threads flag */ #ifdef WITH_THREAD PyGILState_Release(threadstate); #endif