|
16 | 16 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
17 | 17 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
18 | 18 | # |
19 | | -# $Id: roundup-mailgw,v 1.17 2001-12-02 05:06:16 richard Exp $ |
| 19 | +# $Id: roundup-mailgw,v 1.18 2001-12-13 00:20:01 richard Exp $ |
| 20 | + |
| 21 | +# python version check |
| 22 | +from roundup import version_check |
20 | 23 |
|
21 | 24 | import sys, os, re, cStringIO |
22 | | -if not hasattr(sys, 'version_info') or sys.version_info[:2] < (2,1): |
23 | | - print "Roundup requires Python 2.1 or newer." |
24 | | - sys.exit(1) |
25 | 25 |
|
26 | 26 | from roundup.mailgw import Message |
27 | 27 |
|
@@ -168,6 +168,20 @@ if __name__ == '__main__': |
168 | 168 |
|
169 | 169 | # |
170 | 170 | # $Log: not supported by cvs2svn $ |
| 171 | +# Revision 1.17 2001/12/02 05:06:16 richard |
| 172 | +# . We now use weakrefs in the Classes to keep the database reference, so |
| 173 | +# the close() method on the database is no longer needed. |
| 174 | +# I bumped the minimum python requirement up to 2.1 accordingly. |
| 175 | +# . #487480 ] roundup-server |
| 176 | +# . #487476 ] INSTALL.txt |
| 177 | +# |
| 178 | +# I also cleaned up the change message / post-edit stuff in the cgi client. |
| 179 | +# There's now a clearly marked "TODO: append the change note" where I believe |
| 180 | +# the change note should be added there. The "changes" list will obviously |
| 181 | +# have to be modified to be a dict of the changes, or somesuch. |
| 182 | +# |
| 183 | +# More testing needed. |
| 184 | +# |
171 | 185 | # Revision 1.16 2001/11/30 18:23:55 jhermann |
172 | 186 | # Cleaned up strange import (less pollution, too) |
173 | 187 | # |
|
0 commit comments