Mercurial > p > roundup > code
diff setup.py @ 2610:d1626710cff1 maint-0.7 0.7.6
pre-release stuff
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 21 Jul 2004 01:25:55 +0000 |
| parents | b3ea6bad36b7 |
| children | fc9b8522a4bc |
line wrap: on
line diff
--- a/setup.py Wed Jul 21 01:02:15 2004 +0000 +++ b/setup.py Wed Jul 21 01:25:55 2004 +0000 @@ -16,7 +16,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: setup.py,v 1.64.2.6 2004-07-20 23:27:00 richard Exp $ +# $Id: setup.py,v 1.64.2.7 2004-07-21 01:25:55 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -136,8 +136,8 @@ try: f = open('MANIFEST') except: - print '\n*** SOURCE ERROR: The MANIFEST file is missing!' - sys.exit(1) + print '\n*** WARNING: The MANIFEST file is missing!' + return try: manifest = [l.strip() for l in f.readlines()] finally: @@ -232,6 +232,12 @@ - document the STATIC_FILES config var - implement the HTTP HEAD command (sf bug 992544) - fix journal export of files to remove content from CSV files +- API clarification. Previously, the anydbm/bsddb/metakit filter() methods + had required exact matches to Multilink argument lists. The RDBMS + backends treated Multilink matches like all other data types - matching + any of the Multilink argument list is good enough. The latter behaviour + is implemented across the board now. +- fix metakit handling of filter on Link==None ''', author = "Richard Jones", author_email = "richard@users.sourceforge.net",
