* update CHANGES and fix for py3-compat for pull request #241. Closes #1466

This commit is contained in:
Takayuki Shimizukawa 2014-05-28 00:14:50 +09:00
parent a8c2bd4f1f
commit 9ebee01d19
2 changed files with 3 additions and 1 deletions

View File

@ -143,6 +143,8 @@ Bugs fixed
* #636: Keep straight single quotes in literal blocks in the LaTeX build.
* PR#235: comment db schema of websupport lacked a length of the node_id field.
Thanks to solos.
* #1466,PR#241: Fix failure of the cpp domain parser to parse C+11
"variadic templates" declarations. Thanks to Victor Zverovich.
Documentation
-------------

View File

@ -127,7 +127,7 @@ def test_type_definitions():
raises(DefinitionError, parse, 'function', x)
x = 'int foo(const A&... a)'
assert unicode(parse('function', x)) == x
assert text_type(parse('function', x)) == x
def test_bases():
x = 'A'