Update of /cvsroot/sqlobject/SQLObject/SQLObject
In directory sc8-pr-cvs1:/tmp/cvs-serv27668/SQLObject
Modified Files:
DBConnection.py
Log Message:
Made fcntl not a requirement (it's not available on Windows)
Index: DBConnection.py
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/SQLObject/DBConnection.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** DBConnection.py 7 Apr 2003 19:48:41 -0000 1.14
--- DBConnection.py 8 Apr 2003 09:05:19 -0000 1.15
***************
*** 5,9 ****
from Cache import CacheSet
import Col
! import fcntl
try:
import cPickle as pickle
--- 5,12 ----
from Cache import CacheSet
import Col
! try:
! import fcntl
! except ImportError:
! fcntl = None
try:
import cPickle as pickle
|