summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfuzzyman <devnull@localhost>2009-09-13 23:18:00 +0000
committerfuzzyman <devnull@localhost>2009-09-13 23:18:00 +0000
commite616136710e893cabb6c278b7ccf8f9f23b268a5 (patch)
tree063be730c4b7305f6646ad08d29f0ec753aab77b
parentb39a57ebc8b70f79e99ffd86c448308642ae2f4e (diff)
downloadconfigobj-e616136710e893cabb6c278b7ccf8f9f23b268a5.tar.gz
Removing __revision__ and __docformat__
-rw-r--r--configobj.py4
-rw-r--r--docs/configobj.txt1
2 files changed, 1 insertions, 4 deletions
diff --git a/configobj.py b/configobj.py
index 06dc4b6..ff2755c 100644
--- a/configobj.py
+++ b/configobj.py
@@ -115,9 +115,6 @@ MISSING = object()
__version__ = '4.7.0'
-__revision__ = '$Id: configobj.py 156 2006-01-31 14:57:08Z fuzzyman $'
-
-__docformat__ = "restructuredtext en"
__all__ = (
'__version__',
@@ -137,7 +134,6 @@ __all__ = (
'ReloadError',
'UnreprError',
'UnknownType',
- '__docformat__',
'flatten_errors',
)
diff --git a/docs/configobj.txt b/docs/configobj.txt
index 29c727a..abaf2ea 100644
--- a/docs/configobj.txt
+++ b/docs/configobj.txt
@@ -2339,6 +2339,7 @@ From version 4 it lists all releases and changes.
* Minimum supported version of Python is now 2.3
* ~25% performance improvement thanks to Christian Heimes
+* Removed __revision__ and __docformat__.
2009/04/13 - Version 4.6.0
--------------------------