[Epydoc-commits] SF.net SVN: epydoc: [1357] trunk/epydoc/src/epydoc/markup/epytext.py
Brought to you by:
edloper
|
From: <ed...@us...> - 2006-09-06 19:29:33
|
Revision: 1357
http://svn.sourceforge.net/epydoc/?rev=1357&view=rev
Author: edloper
Date: 2006-09-06 12:29:30 -0700 (Wed, 06 Sep 2006)
Log Message:
-----------
- Changed definition of _FIELD_BULLET, so now there is no longer a
required space after the ':'.
Modified Paths:
--------------
trunk/epydoc/src/epydoc/markup/epytext.py
Modified: trunk/epydoc/src/epydoc/markup/epytext.py
===================================================================
--- trunk/epydoc/src/epydoc/markup/epytext.py 2006-09-06 19:25:54 UTC (rev 1356)
+++ trunk/epydoc/src/epydoc/markup/epytext.py 2006-09-06 19:29:30 UTC (rev 1357)
@@ -615,7 +615,7 @@
# a docstring.
_ULIST_BULLET = '[-]( +|$)'
_OLIST_BULLET = '(\d+[.])+( +|$)'
-_FIELD_BULLET = '@\w+( [^{}:\n]+)?:( +|$)'
+_FIELD_BULLET = '@\w+( [^{}:\n]+)?:'
_BULLET_RE = re.compile(_ULIST_BULLET + '|' +
_OLIST_BULLET + '|' +
_FIELD_BULLET)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|