chiark / gitweb /
setup.py: Use tripled double-quotes.
authorMark Wooding <mdw@distorted.org.uk>
Sat, 10 Oct 2009 12:15:13 +0000 (13:15 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sat, 10 Oct 2009 12:15:13 +0000 (13:15 +0100)
Otherwise Emacs gets its knickers in a twist.

setup.py

index 899d17bcdc9202fbe3a45f261032dfd2bc26492c..3ac052ee3ebf6de0687f296be4ce9e1b4778627b 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -19,13 +19,13 @@ setup (# Distribution meta-data
         author_email = "mjp@pilcrow.madison.wi.us",
        license = "GPL",
         long_description = \
-'''The python-cdb extension module is an adaptation of D. J. Bernstein's
+"""The python-cdb extension module is an adaptation of D. J. Bernstein's
 constant database package (see http://cr.yp.to/cdb.html).
 
 cdb files are mappings of keys to values, designed for wickedly
 fast lookups and atomic updates.  This module mimics the normal
 cdb utilities, cdb(get|dump|make), via convenient, high-level Python
-objects.''',
+objects.""",
         ext_modules = [ Extension(
                             "cdbmodule",
                             SRCFILES,