view Makefile @ 52:dd7a5307fbf7

Fixed this comment from mzz: Nitpicking: ?Strings are just sequences of characters? is slightly misleading because Python does not have a separate type for characters. Iterating over a string gives you strings of length 1 (which you can convert to int or use directly). This is occasionally important (like when trying to flatten a structure recursively: recursing into the length 1 strings is bad?)
author Atul Varma <varmaa@toolness.com>
date Tue, 10 Jun 2008 23:38:56 -0700
parents 1b6fc390ffc7
children
line wrap: on
line source

all:
	rst2html.py --stylesheet-path=PythonForJsProgrammers.css --link-stylesheet PythonForJsProgrammers.txt > PythonForJsProgrammers.html

test:
	python -c "import doctest; doctest.testfile('PythonForJsProgrammers.txt', optionflags=doctest.NORMALIZE_WHITESPACE)"