Commit 04f5f97f authored by Stefan Behnel's avatar Stefan Behnel

Bring the doc string C constant back all for special methods, except for the buffer methods.

parent b32ef220
...@@ -3443,7 +3443,7 @@ class DefNodeWrapper(FuncDefNode): ...@@ -3443,7 +3443,7 @@ class DefNodeWrapper(FuncDefNode):
if docstr.is_unicode: if docstr.is_unicode:
docstr = docstr.as_utf8_string() docstr = docstr.as_utf8_string()
if with_pymethdef or (entry.is_special and entry.name not in ('__getbuffer__', '__releasebuffer__')): if not (entry.is_special and entry.name in ('__getbuffer__', '__releasebuffer__')):
code.putln('static char %s[] = %s;' % ( code.putln('static char %s[] = %s;' % (
entry.doc_cname, entry.doc_cname,
docstr.as_c_string_literal())) docstr.as_c_string_literal()))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment