Report information
The Basics
Id:
44956
Status:
resolved
Priority:
Medium/Medium
Queue:

BugTracker
Version Fixed:
9.9.11, 9.9.11-S1, 9.10.6, 9.10.6-S1, 9.11.2, 9.12.0
Version Found:
(no value)
Versions Affected:
(no value)
Versions Planned:
(no value)
Priority:
P2 Normal
Severity:
S2 Normal
CVSS Score:
(no value)
CVE ID:
(no value)
Component:
BIND Utilities
Area:
bug

Dates
Created:Sat, 25 Mar 2017 18:28:07 -0400
Updated:Fri, 28 Jul 2017 23:41:02 -0400
Closed:Thu, 20 Apr 2017 20:35:19 -0400



This bug tracker is no longer active.

Please go to our Gitlab to submit issues (both feature requests and bug reports) for active projects maintained by Internet Systems Consortium (ISC).

Due to security and confidentiality requirements, full access is limited to the primary maintainers.

Subject: [PATCH] Python 3.6 invalid escape sequence deprecation fix
Date: Sun, 26 Mar 2017 00:28:00 +0200
To: bind-bugs@isc.org
From: "Ville Skyttä" <ville.skytta@iki.fi>
https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior --- bin/python/isc/coverage.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/python/isc/coverage.py.in b/bin/python/isc/coverage.py.in index 00eb9e0..9d06b9c 100644 --- a/bin/python/isc/coverage.py.in +++ b/bin/python/isc/coverage.py.in @@ -73,7 +73,7 @@ def parse_time(s): pass # try to parse as a number with a suffix indicating unit of time - r = re.compile('([0-9][0-9]*)\s*([A-Za-z]*)') + r = re.compile(r'([0-9][0-9]*)\s*([A-Za-z]*)') m = r.match(s) if not m: raise ValueError("Cannot parse %s" % s) -- 2.9.3
Subject: Re: [ISC-Bugs #44956] [PATCH] Python 3.6 invalid escape sequence deprecation fix
Date: Tue, 4 Apr 2017 18:13:45 +0530
To: "Ville Skyttä via RT" <bind9-bugs@isc.org>
From: "Mukund Sivaraman" <muks@isc.org>
On Sat, Mar 25, 2017 at 10:28:08PM +0000, Ville Skyttä via RT wrote: > https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior > --- > bin/python/isc/coverage.py.in | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/bin/python/isc/coverage.py.in b/bin/python/isc/coverage.py.in > index 00eb9e0..9d06b9c 100644 > --- a/bin/python/isc/coverage.py.in > +++ b/bin/python/isc/coverage.py.in > @@ -73,7 +73,7 @@ def parse_time(s): > pass > > # try to parse as a number with a suffix indicating unit of time > - r = re.compile('([0-9][0-9]*)\s*([A-Za-z]*)') > + r = re.compile(r'([0-9][0-9]*)\s*([A-Za-z]*)') > m = r.match(s) > if not m: > raise ValueError("Cannot parse %s" % s) Thank you for the bug report and patch. Mukund

Message body not shown because it is not plain text.