[SQL-CVS] SQLObject/SQLObject DBConnection.py,1.25,1.26
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <ian...@us...> - 2003-04-21 22:43:51
|
Update of /cvsroot/sqlobject/SQLObject/SQLObject In directory sc8-pr-cvs1:/tmp/cvs-serv2679/SQLObject Modified Files: DBConnection.py Log Message: Removed unneeded fcntl import Index: DBConnection.py =================================================================== RCS file: /cvsroot/sqlobject/SQLObject/SQLObject/DBConnection.py,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** DBConnection.py 21 Apr 2003 22:43:25 -0000 1.25 --- DBConnection.py 21 Apr 2003 22:43:48 -0000 1.26 *************** *** 8,15 **** import Col try: - import fcntl - except ImportError: - fcntl = None - try: import cPickle as pickle except ImportError: --- 8,11 ---- |