diff options
author | Georg Brandl <georg@python.org> | 2017-01-22 18:32:03 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2017-01-22 18:32:03 +0000 |
commit | 9dbdeeaed19e6d4d1e6f8bae973bac61ddd682d0 (patch) | |
tree | ace915bc11ad4477ae1be0c35b6a4923d46c9c80 /scripts/check_sources.py | |
parent | 32f536a056334e3a02a713860dc9294a4d752723 (diff) | |
parent | 2021a297ae428e8f77dfad8fd3245bb4bf4eb6a3 (diff) | |
download | pygments-git-9dbdeeaed19e6d4d1e6f8bae973bac61ddd682d0.tar.gz |
Merged in zhouzhen1/pygments-main/perllexer (pull request #688)
Fix Perl5 lexer for namespaces/modules.
Diffstat (limited to 'scripts/check_sources.py')
-rwxr-xr-x | scripts/check_sources.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/check_sources.py b/scripts/check_sources.py index 4f5926f6..db09de42 100755 --- a/scripts/check_sources.py +++ b/scripts/check_sources.py @@ -7,7 +7,7 @@ Make sure each Python file has a correct file header including copyright and license information. - :copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS. + :copyright: Copyright 2006-2017 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ @@ -36,7 +36,7 @@ def checker(*suffixes, **kwds): name_mail_re = r'[\w ]+(<.*?>)?' -copyright_re = re.compile(r'^ :copyright: Copyright 2006-2015 by ' +copyright_re = re.compile(r'^ :copyright: Copyright 2006-2017 by ' r'the Pygments team, see AUTHORS\.$', re.UNICODE) copyright_2_re = re.compile(r'^ %s(, %s)*[,.]$' % (name_mail_re, name_mail_re), re.UNICODE) |