Update to Python 3.4 final
Also merge patches from master and add the rewheel module
This commit is contained in:
parent
e9b7bf0d4b
commit
11fb599edb
4 changed files with 358 additions and 5 deletions
21
00190-fix-tests-with-sqlite-3.8.4.patch
Normal file
21
00190-fix-tests-with-sqlite-3.8.4.patch
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
|
||||
# HG changeset patch
|
||||
# User Benjamin Peterson <benjamin@python.org>
|
||||
# Date 1394679139 18000
|
||||
# Node ID 4d626a9df062104b61c44c8a5be8b0fd52fae953
|
||||
# Parent 6f93ab911d5dafcde364013e21723259fe2c85a8# Parent dbc9e3ed5e9f1bd11240eaa971f6c75d6a7013b5
|
||||
merge 3.3 (#20901)
|
||||
|
||||
diff --git a/Lib/sqlite3/test/hooks.py b/Lib/sqlite3/test/hooks.py
|
||||
--- a/Lib/sqlite3/test/hooks.py
|
||||
+++ b/Lib/sqlite3/test/hooks.py
|
||||
@@ -162,7 +162,7 @@ class ProgressTests(unittest.TestCase):
|
||||
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):
|
||||
"""
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue