diff options
Diffstat (limited to 'patches/24_all_sqlite-3.8.4.patch')
-rw-r--r-- | patches/24_all_sqlite-3.8.4.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/patches/24_all_sqlite-3.8.4.patch b/patches/24_all_sqlite-3.8.4.patch new file mode 100644 index 0000000..d6af2eb --- /dev/null +++ b/patches/24_all_sqlite-3.8.4.patch @@ -0,0 +1,14 @@ +http://bugs.python.org/issue20901 +http://hg.python.org/cpython/rev/dbc9e3ed5e9f + +--- Lib/sqlite3/test/hooks.py ++++ Lib/sqlite3/test/hooks.py +@@ -162,7 +162,7 @@ + create table bar (a, b) + """) + second_count = len(progress_calls) +- self.assertGreater(first_count, second_count) ++ self.assertGreaterEqual(first_count, second_count) + + def CheckCancelOperation(self): + """ |