summaryrefslogtreecommitdiff
path: root/docutils/__init__.py
diff options
context:
space:
mode:
authorgoodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2005-06-01 14:44:50 +0000
committergoodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2005-06-01 14:44:50 +0000
commit78ed5de20eb3c06ef02efd5710145321fc40596f (patch)
tree3d15680c7b33b9ae17cb84db5cb7a27022204777 /docutils/__init__.py
parente10b9dee23a956499f61c0bd3d8a3c4233c754c3 (diff)
downloaddocutils-78ed5de20eb3c06ef02efd5710145321fc40596f.tar.gz
docutils.__version_details__ renamed from .__version_suffix__
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@3417 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/__init__.py')
-rw-r--r--docutils/__init__.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/docutils/__init__.py b/docutils/__init__.py
index fbac8caad..eeb54a413 100644
--- a/docutils/__init__.py
+++ b/docutils/__init__.py
@@ -13,7 +13,7 @@ Package Structure
Modules:
- __init__.py: Contains component base classes, exception classes, and
- Docutils `__version__`.
+ Docutils version information.
- core.py: Contains the ``Publisher`` class and ``publish_*()`` convenience
functions.
@@ -58,8 +58,9 @@ number is bumped whenever there is a significant project release. The major
number will be bumped when the project is feature-complete, and perhaps if
there is a major change in the design."""
-__version_suffix__ = ''
-"""Version suffix for snapshots (e.g. ', 2005-05-29, r3410')."""
+__version_details__ = 'repository'
+"""Extra version details (e.g. 'snapshot 2005-05-29, r3410' or 'release'),
+modified automatically."""
class ApplicationError(StandardError): pass
class DataError(ApplicationError): pass