This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ronnix
Recipients akitada, amaury.forgeotdarc, belopolsky, collinwinter, ezio.melotti, georg.brandl, giampaolo.rodola, gregory.p.smith, jacques, jaylogan, jhalcrow, jimjjewett, loewis, mark, moreati, mrabarnett, nneonneo, pitrou, r.david.murray, ronnix, rsc, sjmachin, stiv, timehorse, vbr, zdwiel
Date 2011-01-14.19:44:28
SpamBayes Score 1.527269e-05
Marked as misclassified No
Message-id <1295034272.55.0.435956510952.issue2636@psf.upfronthosting.co.za>
In-reply-to
Content
The regex 0.1.20110106 package fails to install with Python 2.6, due to the use of 2.7 string formatting syntax in setup.py:

    print("Copying {} to {}".format(unicodedata_db_h, SRC_DIR))

This line should be changed to:

    print("Copying {0} to {1}".format(unicodedata_db_h, SRC_DIR))

Reference: http://docs.python.org/library/string.html#formatstrings
History
Date User Action Args
2011-01-14 19:44:32ronnixsetrecipients: + ronnix, loewis, georg.brandl, collinwinter, gregory.p.smith, jimjjewett, sjmachin, amaury.forgeotdarc, belopolsky, pitrou, nneonneo, giampaolo.rodola, rsc, timehorse, mark, vbr, ezio.melotti, mrabarnett, jaylogan, akitada, moreati, r.david.murray, jacques, zdwiel, jhalcrow, stiv
2011-01-14 19:44:32ronnixsetmessageid: <1295034272.55.0.435956510952.issue2636@psf.upfronthosting.co.za>
2011-01-14 19:44:28ronnixlinkissue2636 messages
2011-01-14 19:44:28ronnixcreate