[sympy] Style Checker for Sphinx docs

2014-05-17 Thread Sudhanshu Mishra
Hi all This is a nice tool to check following styles for docs: - lines should not be longer than 79 characters - D001 - exception: line with no whitespace except maybe in the beginning - exception: line that starts with '..' -- longer directives are allowed,

Re: [sympy] defining a new function

2014-05-17 Thread Aaron Meurer
@classmethod lets you call the method as my_function.eval() (as opposed to my_function().eval). This is required for eval() because that is how the superclass uses it to instantiate the class. Think of it as a special SymPy version of __new__. The derivative defines how the function behaves with r

Re: [sympy] Documentation

2014-05-17 Thread Alan Bromborsky
Installing table_styling turned out to be a problem for my version of linux (wrong version of python, etc.) so I made the tables with LaTeX then cropped the pdf output and converted to png. The tables will be images. On 05/16/2014 07:43 PM, Aaron Meurer wrote: This is a good cheatsheet for Sp