Update of /cvsroot/wtfibs/WTFibs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20043
Modified Files:
setup.py
Log Message:
Change the project name and fix some formatting.
Index: setup.py
===================================================================
RCS file: /cvsroot/wtfibs/WTFibs/setup.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- setup.py 15 Aug 2005 06:57:23 -0000 1.1
+++ setup.py 15 Aug 2005 15:35:42 -0000 1.2
@@ -31,7 +31,7 @@
import textwrap
if sys.version_info < (2, 3, 0):
- sys.stderr.write("Repot requires Python 2.3 or newer.\n")
+ sys.stderr.write("WTFibs requires Python 2.3 or newer.\n")
sys.exit(-1)
try:
@@ -40,15 +40,16 @@
except ImportError, e:
s = normalizeWhitespace("""WTFibs requires the distutils package to
install. This package is normally included with Python, but for some
- unfathomable reason, many distributions to take it out of standard Python
- and put it in another package, usually caled 'python-dev' or python-devel'
+ unfathomable reason, many distributions take it out of standard Python
+ and put it in another package, usually caled 'python-dev' or 'python-devel'
or something similar. This is one of the dumbest things a distribution can
do, because it means that developers cannot rely on *STANDARD* Python
modules to be present on systems of that distribution. Complain to your
- distribution, and loudly. If you how much of our time we've wasted telling
- people to install what should be included by default with Python you'd
- understand why we're unhappy about this. Anyway, to reiterate, install the
- development package for Python that your distribution supplies.""")
+ distribution, and loudly. If you knew how much of our time we've wasted
+ telling people to install what should be included by default with Python
+ you'd understand why we're unhappy about this. Anyway, to reiterate,
+ install the development package for Python that your distribution
+ supplies.""")
sys.stderr.write(os.linesep*2)
sys.stderr.write(textwrap.fill(s))
sys.stderr.write(os.linesep*2)
|