fix python2.5 support

This commit is contained in:
Richard Jones
2011-11-29 11:25:53 +11:00
parent 8605349433
commit 90a3012bcc
3 changed files with 5 additions and 1 deletions
+1
View File
@@ -224,6 +224,7 @@ with the same identifier.
**Version history (in brief)**:
- 1.3.3 fix Python 2.5 setup.py issue.
- 1.3.2 fix Python 3.2 setup.py issue.
- 1.3.1 fix a couple of Python 3.2 compatibility issues.
- 1.3 added search() and findall(); removed compile() from ``import *``
+2 -1
View File
@@ -224,6 +224,7 @@ with the same identifier.
**Version history (in brief)**:
- 1.3.3 fix Python 2.5 setup.py issue.
- 1.3.2 fix Python 3.2 setup.py issue.
- 1.3.1 fix a couple of Python 3.2 compatibility issues.
- 1.3 added search() and findall(); removed compile() from ``import *``
@@ -253,7 +254,7 @@ with the same identifier.
This code is copyright 2011 eKit.com Inc (http://www.ekit.com/)
See the end of the source file for the license of use.
'''
__version__ = '1.3.2'
__version__ = '1.3.3'
# yes, I now have two problems
import re
+2
View File
@@ -1,5 +1,7 @@
#! /usr/bin/env python
from __future__ import with_statement
from distutils.core import setup
from parse import __version__, __doc__