[issue3041] autodoc does not support unicode docstrings

2017-04-11 Thread Dimitri Merejkowsky
Changes by Dimitri Merejkowsky : -- pull_requests: +1227 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue3041] autodoc does not support unicode docstrings

2008-06-05 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Thanks, fixed in r63958. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3041] autodoc does not support unicode docstrings

2008-06-05 Thread Christophe de Vienne
New submission from Christophe de Vienne <[EMAIL PROTECTED]>: If I define unicode docstrings in my python source, autodoc crash because it tries to decode them, which force a ascii encode first. A trivial patch fix the issue : Index: sphinx/ext/autodoc.py ===