Roundup Robot added the comment:
New changeset 4e301c80f5d1 by Benjamin Peterson in branch '3.3':
remove url from docstring (closes #19220)
http://hg.python.org/cpython/rev/4e301c80f5d1
New changeset f38edb58fefb by Benjamin Peterson in branch 'default':
merge 3.3 (#19220)
http://hg.python.org/c
Arfrever Frehtes Taifersar Arahesis added the comment:
Issue #19221 has been fixed, but URL in unicodedata.__doc__ in default branch
was not updated :( .
Now it should be http://www.unicode.org/reports/tr44/tr44-12.html
--
assignee: -> benjamin.peterson
nosy: +benjamin.peterson
__
New submission from Arfrever Frehtes Taifersar Arahesis:
Unicode version was updated in 3.3 and 3.4, but unicodedata.__doc__ was not
updated.
$ for version in 3.2 3.3 3.4; do python${version} -c 'import unicodedata;
print("%s\n\"%s\"\n" % (unicodedata.unidata_version, unicodedata.__doc__))';