Author: phd
Date: 2010-01-22 10:54:29 -0700 (Fri, 22 Jan 2010)
New Revision: 4089
Modified:
SQLObject/trunk/sqlobject/main.py
Log:
SQLObject requires Python 2.4.0 or later.
Modified: SQLObject/trunk/sqlobject/main.py
===================================================================
--- SQLObject/trunk/sqlobject/main.py 2010-01-15 16:11:54 UTC (rev 4088)
+++ SQLObject/trunk/sqlobject/main.py 2010-01-22 17:54:29 UTC (rev 4089)
@@ -44,8 +44,8 @@
from util.threadinglocal import local
import sys
-if sys.version_info[:3] < (2, 2, 0):
- raise ImportError, "SQLObject requires Python 2.2.0 or later"
+if sys.version_info[:3] < (2, 4, 0):
+ raise ImportError, "SQLObject requires Python 2.4.0 or later"
"""
This thread-local storage is needed for RowCreatedSignals. It gathers
|