1. 9ce1564 revert dd13098a5dc2 (#29006, #10513) by Benjamin Peterson · 8 years ago
  2. 0897a55 revert 030e100f048a (#29006, #10513) by Benjamin Peterson · 8 years ago
  3. 26c985a fix refleak in null-containing error case (#21147) by Benjamin Peterson · 8 years ago
  4. 38d335b Issue #28480: Avoid label at end of compound statement --without-threads by Martin Panter · 8 years ago
  5. 5170c16 Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation() by Serhiy Storchaka · 8 years ago
  6. f0039d1 fix unused variable warnings in pysqlite (closes #27967) by Benjamin Peterson · 8 years ago
  7. e63af90 Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factory by Serhiy Storchaka · 8 years ago
  8. dc60c75 Issue #10513: Fix a regression in Connection.commit() by Berker Peksag · 8 years ago
  9. bf2dca9 English spelling and grammar fixes by Martin Panter · 8 years ago
  10. 763a61c Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  11. bc62af1 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  12. 2e6c829 Issue #20440: More use of Py_SETREF. by Serhiy Storchaka · 9 years ago
  13. 5951f23 Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  14. 80cb186 Issue #24257: Fixed segmentation fault in sqlite3.Row constructor with faked by Serhiy Storchaka · 9 years ago
  15. 101b054 Issue #20274: When calling a _sqlite.Connection, it now complains if passed by Larry Hastings · 9 years ago
  16. 0aa6562 Issue #21147: sqlite3 now raises an exception if the request contains a null by Serhiy Storchaka · 10 years ago
  17. 501da1d Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particular by Serhiy Storchaka · 10 years ago
  18. 30080fd Issue #10203: sqlite3.Row now truly supports sequence protocol. In particular by Serhiy Storchaka · 10 years ago
  19. 98a9722 Issue #20437: Fixed 43 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
  20. 9450219 Issue #20026: Fix the sqlite module to handle correctly invalid isolation level by Victor Stinner · 11 years ago
  21. 8493a04 Issue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3, by Serhiy Storchaka · 11 years ago
  22. 35c52b6 Issue #17073: Fix some integer overflows in sqlite3 module. by Serhiy Storchaka · 12 years ago
  23. 77e77a1 Issue #14572: Prevent build failures with pre-3.5.0 versions of by Ned Deily · 12 years ago
  24. 4ab701b sqlite3: Fix 64-bit integer handling in user functions on 32-bit architectures by Petri Lehtinen · 13 years ago
  25. c7fd523 Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. by Petri Lehtinen · 13 years ago
  26. 0518f47 sqlite3: Handle strings with embedded zeros correctly by Petri Lehtinen · 13 years ago
  27. ace2ccf Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. by Antoine Pitrou · 13 years ago
  28. c2077b0 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  29. a1b5629 Remove an unnecessary variable. by Brett Cannon · 14 years ago
  30. 6e055d7 sqlite3: Fix a segfault on calling a connection with something else than a by Victor Stinner · 15 years ago
  31. 3bbb672 Merged code from pysqlite 2.6.0. by Gerhard Häring · 15 years ago
  32. d3eaa74 #5615: make it possible to configure --without-threads again. by Georg Brandl · 15 years ago
  33. 3e4caeb Issue #5341: Fix a variety of spelling errors. by Mark Dickinson · 16 years ago
  34. e6872eb Issue #3846: Release GIL during calls to sqlite3_prepare. This improves concurrent access to the same database file from multiple threads/processes. by Gerhard Häring · 16 years ago
  35. 6e1afcf Fixes issue #3103. In the sqlite3 module, made one more function static. All renaming public symbos now have the pysqlite prefix to avoid name clashes. This at least once created problems where the same symbol name appeared somewhere in Apache and the sqlite3 module was used from mod_python. by Gerhard Häring · 16 years ago
  36. ef2276b sqlite3 module: Mark iterdump() method as "Non-standard" like all the other methods not found in DB-API. by Gerhard Häring · 16 years ago
  37. a27a62e Silenced a compiler warning in the sqlite module by Christian Heimes · 16 years ago
  38. a24869a #3312: fix two sqlite3 crashes. by Georg Brandl · 16 years ago
  39. bd70476 Issue #3153: sqlite leaks on error. by Alexandre Vassalotti · 16 years ago
  40. ac0c381 Expand docstrings of sqlite3 functions. by Georg Brandl · 16 years ago
  41. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  42. 7f7ca35 Fixed rowcount for SELECT statements. They're -1 now (again), for better DB-API 2.0 compliance. by Gerhard Häring · 16 years ago
  43. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  44. e11c9b3 Implemented feature request 2157: Converter names are cut off at '(' by Gerhard Häring · 16 years ago
  45. 5a366c3 Applied sqliterow-richcmp.diff patch from Thomas Heller in Issue2152. The by Gerhard Häring · 16 years ago
  46. ffa3357 SQLite requires 64-bit integers in order to build. So the whole HAVE_LONG_LONG by Gerhard Häring · 16 years ago
  47. 2a11c05 Update sqlite3 module to match current version of pysqlite. by Gerhard Häring · 16 years ago
  48. b980342 Accept patch issue2426 by Paul Kippes (kippesp). by Gregory P. Smith · 16 years ago
  49. ca752f3 Only DECREF if ret != NULL by Neal Norwitz · 17 years ago
  50. 1cc60ed Updated to pysqlite 2.4.1. Documentation additions will come later. by Gerhard Häring · 17 years ago
  51. f558d2e #1509: fix sqlite3 docstrings and docs w.r.t. cursor.fetchXXX methods. by Georg Brandl · 17 years ago
  52. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  53. 99b9df8 Forward-port of commit 59184. by Gerhard Häring · 17 years ago
  54. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  55. 956f0f7 Patch by Tim Delany (missing DECREF). SF #1731330. by Guido van Rossum · 17 years ago
  56. 0741a60 Merged changes from standalone version 2.3.3. This should probably all be by Gerhard Häring · 18 years ago
  57. cddabbf Fix spelling. by Georg Brandl · 18 years ago
  58. 762fbd3 The sqlite3 module did cut off data from the SQLite database at the first null by Gerhard Häring · 18 years ago
  59. ecd2010 Fixed a memory leak that was introduced with incorrect usage of the Python weak by Gerhard Häring · 18 years ago
  60. fe7d0c3 Speculative checkin (requires approval of Gerhard Haering) by Neal Norwitz · 18 years ago
  61. b2e8816 - Added version checks in C code to make sure we don't trigger bugs in older by Gerhard Häring · 18 years ago
  62. 1541ef0 Merged changes from external pysqlite 2.3.0 release. Documentation updates will by Gerhard Häring · 18 years ago
  63. 752968e More memory leaks from valgrind by Neal Norwitz · 18 years ago
  64. 82d4cc2 Fix some warnings on Mac OS X 10.4 by Neal Norwitz · 18 years ago
  65. 3e99c0a Updated the sqlite3 module to the external pysqlite 2.2.2 version. by Gerhard Häring · 18 years ago
  66. 195e4e6 Fix valgrind problem with invalid memory read by Neal Norwitz · 18 years ago
  67. 5b03065 Fix memory leak by Neal Norwitz · 18 years ago
  68. 4c842a4 Fix problem (not checking return result) reported by Coverity by Neal Norwitz · 18 years ago
  69. b431998 This change shouldn't have any functional effect. Coverity was by Neal Norwitz · 18 years ago
  70. d126200 Fix unchecked return result from Coverity. by Neal Norwitz · 18 years ago
  71. 8e7b490 upgrade to final version of pysqlite 2.2.0 by Anthony Baxter · 18 years ago
  72. c410d6c Fix a couple of memory issues by Neal Norwitz · 18 years ago
  73. 72289a6 Update to pysqlite 2.2.0 by Anthony Baxter · 18 years ago
  74. 95f0e4c Make ssize_t clean by Neal Norwitz · 18 years ago
  75. 07f5b35 backport r243 from the pysqlite2 svn repository - lowers the required version by Anthony Baxter · 18 years ago
  76. c51ee69 merged the sqlite-integration branch. by Anthony Baxter · 18 years ago