[Epydoc-commits] SF.net SVN: epydoc: [1416] trunk/epydoc/src/epydoc/docwriter/html_colorize. py
Brought to you by:
edloper
|
From: <ed...@us...> - 2007-01-17 21:29:28
|
Revision: 1416
http://svn.sourceforge.net/epydoc/?rev=1416&view=rev
Author: edloper
Date: 2007-01-17 13:29:25 -0800 (Wed, 17 Jan 2007)
Log Message:
-----------
Removed import of 'sre' (not used, and causes a deprication warning in
python 2.5 -- see SF bug #1563688)
Modified Paths:
--------------
trunk/epydoc/src/epydoc/docwriter/html_colorize.py
Modified: trunk/epydoc/src/epydoc/docwriter/html_colorize.py
===================================================================
--- trunk/epydoc/src/epydoc/docwriter/html_colorize.py 2007-01-17 21:26:37 UTC (rev 1415)
+++ trunk/epydoc/src/epydoc/docwriter/html_colorize.py 2007-01-17 21:29:25 UTC (rev 1416)
@@ -15,7 +15,7 @@
"""
__docformat__ = 'epytext en'
-import sys, sre_parse, sre, re, codecs
+import sys, sre_parse, re, codecs
import sre_constants
from epydoc import log
from epydoc.util import decode_with_backslashreplace, plaintext_to_html
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|