Also, fix generation of docstrings containing a double quote character. Patch from Richard Boulton in bug#1700146. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9684 626c5289-ae23-0410-ae9c-e8d60b6d4f22
6 lines
130 B
Python
6 lines
130 B
Python
# file: runme.py
|
|
|
|
import example
|
|
|
|
print "example.Foo.bar.__doc__ =", repr(example.Foo.bar.__doc__), "(Should be 'No comment')"
|
|
|