mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Code enhancements (thanks to mitya57 and tk0miya):
* use tuple instead of list * compile regex to find copyright year * enclose test inside try/finally
This commit is contained in:
parent
7a89015a54
commit
6509130ff2
@ -22,6 +22,7 @@ from sphinx.util.pycompat import execfile_, NoneType
|
||||
from sphinx.util.i18n import format_date
|
||||
|
||||
nonascii_re = re.compile(br'[\x80-\xff]')
|
||||
copyright_year_re = re.compile(br'^((\d{4}-)?)(\d{4})(?=[ ,])')
|
||||
|
||||
CONFIG_SYNTAX_ERROR = "There is a syntax error in your configuration file: %s"
|
||||
if PY3:
|
||||
@ -302,10 +303,9 @@ class Config(object):
|
||||
# correct values of copyright year that are not coherent with
|
||||
# the SOURCE_DATE_EPOCH environment variable:
|
||||
if getenv('SOURCE_DATE_EPOCH') is not None:
|
||||
for k in ['copyright','epub_copyright']:
|
||||
for k in ('copyright','epub_copyright'):
|
||||
if k in config:
|
||||
config[k] = re.sub('^((\d{4}-)?)(\d{4})(?=[ ,])',
|
||||
'\g<1>%s' % format_date('%Y'),
|
||||
config[k] = copyright_year_re.sub('\g<1>%s' % format_date('%Y'),
|
||||
config[k])
|
||||
|
||||
def check_types(self, warn):
|
||||
|
@ -14,6 +14,7 @@ from util import TestApp
|
||||
|
||||
|
||||
def test_correct_year():
|
||||
try:
|
||||
# save current value of SOURCE_DATE_EPOCH
|
||||
sde = os.environ.pop('SOURCE_DATE_EPOCH',None)
|
||||
|
||||
@ -40,6 +41,7 @@ def test_correct_year():
|
||||
app.cleanup()
|
||||
assert '2006-2010' in content
|
||||
|
||||
finally:
|
||||
# Restores SOURCE_DATE_EPOCH
|
||||
if sde == None:
|
||||
os.environ.pop('SOURCE_DATE_EPOCH',None)
|
||||
|
Loading…
Reference in New Issue
Block a user