Skip to content

Commit cb95217

Browse files
committed
Changelog information for 6.89.4
- Legacy-Id: 15895
1 parent 98a74bd commit cb95217

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

changelog

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
ietfdb (6.89.4) ietf; urgency=low
2+
3+
* Moved __future__ imports down in ietf/utils/draft.py so as not to obscure
4+
the module docstring. Fixes inability to run '$ ietf/utils/draft.py -h'.
5+
6+
* Applied 5 patches from dkg@fifthhorseman.net, for py3 compatibility in
7+
the text draft metainfo extractor ietf/utils/draft.py:
8+
9+
- Use a list of dictionary keys. In python3, dict.keys() produces a
10+
dict_keys object, not a list. Since this code treats it as a list,
11+
we'll just be explicit about that.
12+
13+
- Fix regex manipulation for word characters. In python 3.7, re.sub()
14+
started treating unknown escape sequences in as errors. Fix this by
15+
sending an escaped \ where we mean to pass it through raw.
16+
See https://docs.python.org/3/library/re.html#re.sub
17+
18+
- Use // for explicit integer division. Without this fix, in modern
19+
versions of python, the changed line produces: TypeError: 'float' object
20+
cannot be interpreted as an integer
21+
22+
- Use modern form of exception handling
23+
24+
- Use print() function instead of print statement
25+
26+
* Added a bit of name normalization for test factory person names.
27+
28+
-- Henrik Levkowetz <henrik@levkowetz.com> 14 Jan 2019 22:29:06 +0000
29+
130
ietfdb (6.89.3) ietf; urgency=low
231

332
* Updated the timezone information to match the latest timezone database

0 commit comments

Comments
 (0)