Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 1138eba3df894800ade11a149cd8d8584ecc4b30 authored by Éric Araujo on 05 September 2010, 18:59:49 UTC
Fix accidental suppression in r84537
Tip revision: 1138eba
shared_cache.py
import sqlite3

# The shared cache is only available in SQLite versions 3.3.3 or later
# See the SQLite documentaton for details.

sqlite3.enable_shared_cache(True)
back to top