[issue20376] Argument Clinic: backslashes in docstrings are not escaped

2014-01-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 381c9d592cc8 by Zachary Ware in branch 'default': Issue #20376: Argument Clinic now escapes backslashes in docstrings. http://hg.python.org/cpython/rev/381c9d592cc8 -- nosy: +python-dev ___ Python tracker

[issue20376] Argument Clinic: backslashes in docstrings are not escaped

2014-01-25 Thread Zachary Ware
Zachary Ware added the comment: Done! -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue20376] Argument Clinic: backslashes in docstrings are not escaped

2014-01-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. -- assignee: -> zach.ware stage: -> commit review ___ Python tracker ___ ___ Python-bugs-l

[issue20376] Argument Clinic: backslashes in docstrings are not escaped

2014-01-24 Thread Zachary Ware
Zachary Ware added the comment: This should do it, correct? -- keywords: +patch nosy: +zach.ware Added file: http://bugs.python.org/file33688/issue20376.diff ___ Python tracker _

[issue20376] Argument Clinic: backslashes in docstrings are not escaped

2014-01-24 Thread Larry Hastings
Larry Hastings added the comment: Oops! They should be escaped. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue20376] Argument Clinic: backslashes in docstrings are not escaped

2014-01-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Argument Clinic copies backslashes in docstrings as is. This can produce wrong or even invalid C string. Either backslashes should be escaped, or current behavior should be documented. -- components: Demos and Tools messages: 209044 nosy: larry, se