home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / Inkscape / Inkscape-0.48.2-1-win32.exe / python / Lib / site-packages / lxml / usedoctest.py < prev   
Encoding:
Python Source  |  2010-05-29  |  230 b   |  14 lines

  1. """Doctest module for XML comparison.
  2.  
  3. Usage::
  4.  
  5.    >>> import lxml.usedoctest
  6.    >>> # now do your XML doctests ...
  7.  
  8. See `lxml.doctestcompare`
  9. """
  10.  
  11. from lxml import doctestcompare
  12.  
  13. doctestcompare.temp_install(del_module=__name__)
  14.