Ignore:
Timestamp:
Mar 19, 2014, 11:31:01 PM (11 years ago)
Author:
dmik
Message:

python: Merge vendor 2.7.6 to trunk.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk

  • python/trunk/Lib/test/test_sqlite.py

    r2 r391  
    1 from test.test_support import run_unittest, TestSkipped
     1from test.test_support import run_unittest, import_module
    22
    3 try:
    4     import _sqlite3
    5 except ImportError:
    6     raise TestSkipped('no sqlite available')
     3# Skip test if _sqlite3 module was not built.
     4import_module('_sqlite3')
     5
    76from sqlite3.test import (dbapi, types, userfunctions, py25tests,
    87                                factory, transactions, hooks, regression,
Note: See TracChangeset for help on using the changeset viewer.