- Commit
- ee36eb3020ccc659587e0aba743432a74e46c5d8
- Parent
- 4734ddc846621302334974f9963bdb46f7990602
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Added missing type parameter in wrapper.py.
My personal build of CMark ✏️
Added missing type parameter in wrapper.py.
1 file changed, 2 insertions, 2 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Modified | wrapper.py | 4 | 2 | 2 |
diff --git a/wrapper.py b/wrapper.py @@ -2,7 +2,7 @@ # Example for using the shared library from python -from ctypes import CDLL, c_char_p +from ctypes import CDLL, c_char_p, c_long import sys import platform @@ -15,7 +15,7 @@ else: markdown = cmark.cmark_markdown_to_html markdown.restype = c_char_p -markdown.argtypes = [c_char_p] +markdown.argtypes = [c_char_p, c_long] def md2html(text): return markdown(text, len(text))