Mercurial > p > roundup > code
diff roundup/roundupdb.py @ 3702:06d7816976bc
python 2.6 compatibility
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sat, 09 Sep 2006 05:50:17 +0000 |
| parents | 77ed6c517793 |
| children | 1442ba0c4850 |
line wrap: on
line diff
--- a/roundup/roundupdb.py Sat Sep 09 05:42:45 2006 +0000 +++ b/roundup/roundupdb.py Sat Sep 09 05:50:17 2006 +0000 @@ -1,3 +1,4 @@ +from __future__ import nested_scopes # # Copyright (c) 2001 Bizar Software Pty Ltd (http://www.bizarsoftware.com.au/) # This module is free software, and you may redistribute it and/or modify @@ -15,14 +16,12 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: roundupdb.py,v 1.124 2006-05-06 17:19:58 a1s Exp $ +# $Id: roundupdb.py,v 1.125 2006-09-09 05:50:17 richard Exp $ """Extending hyperdb with types specific to issue-tracking. """ __docformat__ = 'restructuredtext' -from __future__ import nested_scopes - import re, os, smtplib, socket, time, random import cStringIO, base64, quopri, mimetypes
