~ubuntu-branches/ubuntu/utopic/python-eventlet/utopic

« back to all changes in this revision

Viewing changes to debian/patches/mysql-import-traceback.patch

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2011-05-25 22:02:42 UTC
  • Revision ID: james.westby@ubuntu.com-20110525220242-kpc3wbq83gxo4too
Tags: 0.9.15-0ubuntu2
* retry-on-timeout.patch: This addresses a problem where a timeout fires
  even though the connection was actually correctly established. (LP:
  #771512)
* reuseaddr.patch: Make sure SO_REUSEADDR is set.
* mysql-import-traceback.patch: Add missing import in the mysql tests.
* Add python-greenlet dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Description: Add missing import to mysql tests
 
2
Origin: Soren Hansen <soren@linux2go.dk>
 
3
Forwarded: Sent a pull request for https://bitbucket.org/soren/eventlet
 
4
 
 
5
--- python-eventlet-0.9.15.orig/tests/mysqldb_test.py
 
6
+++ python-eventlet-0.9.15/tests/mysqldb_test.py
 
7
@@ -3,6 +3,7 @@ import sys
 
8
 import time
 
9
 from tests import skipped, skip_unless, using_pyevent, get_database_auth, LimitedTestCase
 
10
 import eventlet
 
11
+import traceback
 
12
 from eventlet import event
 
13
 try:
 
14
     from eventlet.green import MySQLdb