diff options
author | Guido van Rossum <guido@python.org> | 1998-05-29 18:22:53 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-05-29 18:22:53 (GMT) |
commit | 3c46234e5ea1b166c66981bc5fc83e6c05a8abf2 (patch) | |
tree | 018a8128d882e6c28ce6e8567fbeb10a31863a5b /Lib/re.py | |
parent | d659693b5b44ca8a8fa00945514ce9895132a0b3 (diff) | |
download | cpython-3c46234e5ea1b166c66981bc5fc83e6c05a8abf2.zip cpython-3c46234e5ea1b166c66981bc5fc83e6c05a8abf2.tar.gz cpython-3c46234e5ea1b166c66981bc5fc83e6c05a8abf2.tar.bz2 |
Remove Emacs and #! cruft.
Diffstat (limited to 'Lib/re.py')
-rw-r--r-- | Lib/re.py | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -1,6 +1,3 @@ -#!/usr/bin/env python -# -*- mode: python -*- - import sys import string from pcre import * @@ -291,4 +288,3 @@ class MatchObject: return result[0] else: return () - |