diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2011-04-13 10:05:38 +0100 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2011-04-13 10:05:38 +0100 |
commit | 0de0badbc8cbaa356e4c8d8b426870f1b0e3b60e (patch) | |
tree | f401adbb5c1031de9b94b8a8997d384ff2b1d7bf /pygments/lexers/postgres.py | |
parent | 98c745ccf4f94a129dae7f53a7db59277e0a06df (diff) | |
download | pygments-0de0badbc8cbaa356e4c8d8b426870f1b0e3b60e.tar.gz |
Dropped unused regexp in psql parser
Diffstat (limited to 'pygments/lexers/postgres.py')
-rw-r--r-- | pygments/lexers/postgres.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pygments/lexers/postgres.py b/pygments/lexers/postgres.py index 501cc166..f85b4b01 100644 --- a/pygments/lexers/postgres.py +++ b/pygments/lexers/postgres.py @@ -174,7 +174,6 @@ re_error = re.compile(r'(ERROR|FATAL):') re_message = re.compile( r'((?:DEBUG|INFO|NOTICE|WARNING|ERROR|' r'FATAL|HINT|DETAIL|LINE [0-9]+):)(.*?\n)') -re_charhint = re.compile(r'\s*\^\s*\n') def lookahead(x): """Wrap an iterator and allow pushing back an item.""" |