[pygccxml-commit] SF.net SVN: pygccxml: [655] pydsc_dev/docs/pydsc.rest
Brought to you by:
mbaas,
roman_yakovenko
From: <rom...@us...> - 2006-10-12 09:18:40
|
Revision: 655 http://svn.sourceforge.net/pygccxml/?rev=655&view=rev Author: roman_yakovenko Date: 2006-10-12 02:18:29 -0700 (Thu, 12 Oct 2006) Log Message: ----------- switching to code block directive Modified Paths: -------------- pydsc_dev/docs/pydsc.rest Modified: pydsc_dev/docs/pydsc.rest =================================================================== --- pydsc_dev/docs/pydsc.rest 2006-10-12 07:54:49 UTC (rev 654) +++ pydsc_dev/docs/pydsc.rest 2006-10-12 09:18:29 UTC (rev 655) @@ -24,11 +24,13 @@ check all the documentation strings. My goal was simplicity + easy customization. I achieved it. Here is example of usage of pydsc: -| ``import pydsc`` -| ``#every module that will be imported after pydsc will be checked`` -| ``#all errors will be printed to stdout`` -| ``import readline`` +.. code-block:: Python + import pydsc + #every module that will be imported after pydsc will be checked + #all errors will be printed to stdout + import readline + -------------- Spell checking -------------- @@ -49,12 +51,14 @@ "More complex" example: -| ``import pydsc`` -| #check for spell errors only in files under "/home/roman/pygccxml" directory -| ``pydsc.include( "/home/roman/pygccxml" )`` -| ``pydsc.ignore( [ 'normcase', 'normpath' ] )`` -| ``import readline`` +.. code-block:: Python + import pydsc + #check for spell errors only in files under "/home/roman/pygccxml" directory + pydsc.include( "/home/roman/pygccxml" ) + pydsc.ignore( [ 'normcase', 'normpath' ] ) + import readline + -------- Download -------- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |