|
16 | 16 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
17 | 17 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
18 | 18 | # |
19 | | -# $Id: setup.py,v 1.64.2.6 2004-07-20 23:27:00 richard Exp $ |
| 19 | +# $Id: setup.py,v 1.64.2.7 2004-07-21 01:25:55 richard Exp $ |
20 | 20 |
|
21 | 21 | from distutils.core import setup, Extension |
22 | 22 | from distutils.util import get_platform |
@@ -136,8 +136,8 @@ def check_manifest(): |
136 | 136 | try: |
137 | 137 | f = open('MANIFEST') |
138 | 138 | except: |
139 | | - print '\n*** SOURCE ERROR: The MANIFEST file is missing!' |
140 | | - sys.exit(1) |
| 139 | + print '\n*** WARNING: The MANIFEST file is missing!' |
| 140 | + return |
141 | 141 | try: |
142 | 142 | manifest = [l.strip() for l in f.readlines()] |
143 | 143 | finally: |
@@ -232,6 +232,12 @@ def main(): |
232 | 232 | - document the STATIC_FILES config var |
233 | 233 | - implement the HTTP HEAD command (sf bug 992544) |
234 | 234 | - fix journal export of files to remove content from CSV files |
| 235 | +- API clarification. Previously, the anydbm/bsddb/metakit filter() methods |
| 236 | + had required exact matches to Multilink argument lists. The RDBMS |
| 237 | + backends treated Multilink matches like all other data types - matching |
| 238 | + any of the Multilink argument list is good enough. The latter behaviour |
| 239 | + is implemented across the board now. |
| 240 | +- fix metakit handling of filter on Link==None |
235 | 241 | ''', |
236 | 242 | author = "Richard Jones", |
237 | 243 | author_email = "[email protected]", |
|
0 commit comments