diff options
author | Paul McGuire <ptmcg@austin.rr.com> | 2013-07-17 07:30:19 +0000 |
---|---|---|
committer | Paul McGuire <ptmcg@austin.rr.com> | 2013-07-17 07:30:19 +0000 |
commit | f997adf8c8930462f4d32c55838da8bb8c769dc3 (patch) | |
tree | 5f867ce98735b27d7d97a485d8a70635cf573b82 /src/pyparsing.py | |
parent | e5068e4861660ea3e7d52918c259134b21e6b74e (diff) | |
download | pyparsing-git-f997adf8c8930462f4d32c55838da8bb8c769dc3.tar.gz |
Minor cleanup before releasing 2.0.1
Diffstat (limited to 'src/pyparsing.py')
-rw-r--r-- | src/pyparsing.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pyparsing.py b/src/pyparsing.py index a6d16d1..c078f9c 100644 --- a/src/pyparsing.py +++ b/src/pyparsing.py @@ -1,6 +1,6 @@ # module pyparsing.py
#
-# Copyright (c) 2003-2011 Paul T. McGuire
+# Copyright (c) 2003-2013 Paul T. McGuire
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
@@ -21,7 +21,6 @@ # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
-#from __future__ import generators
__doc__ = \
"""
@@ -105,7 +104,6 @@ if PY_3: else:
_MAX_INT = sys.maxint
range = xrange
- set = lambda s : dict( [(c,0) for c in s] )
def _ustr(obj):
"""Drop-in replacement for str(obj) that tries to be Unicode friendly. It first tries
|