# HG changeset patch # User Frederic Bastien # Date 1322582125 18000 # Node ID 97ec0d3248caea84b22e025d60eb6d9a5a4642bd # Parent 2b3cff8823826122a0d2dbd14b3fc62fb7dd57e4 Add info about Theano docstring and UTF-8 diff -r 2b3cff882382 -r 97ec0d3248ca doc/v2_planning/API_coding_style.txt --- a/doc/v2_planning/API_coding_style.txt Tue Sep 13 14:02:33 2011 -0400 +++ b/doc/v2_planning/API_coding_style.txt Tue Nov 29 10:55:25 2011 -0500 @@ -715,6 +715,20 @@ * Can make a system to put a comment to the ticket? +Theano +====== + +Theano used many standard for its docstring. I think we should consentrate on the more frequent: http://sphinx.pocoo.org/markup/desc.html#info-field-lists. + +UTF-8 +===== + +To make a file UTF-8 compatible, just add this line at the begining of the file: + +.. code-block:: python + + # -*- coding: utf-8 -*- + TODO ====