summaryrefslogtreecommitdiff
path: root/smartypants.py
diff options
context:
space:
mode:
authorYu-Jie Lin <livibetter@gmail.com>2013-08-11 15:20:27 +0800
committerYu-Jie Lin <livibetter@gmail.com>2013-08-11 15:20:27 +0800
commit4fb3b42252a8d4c596065de833b27eb9a006fc23 (patch)
treea73671e0fdb8b2a7d175d700da844f0d029b36e0 /smartypants.py
parent1242fd3489e1c5212ed0a8555b1578d2d38a7e3f (diff)
downloadsmartypants-4fb3b42252a8d4c596065de833b27eb9a006fc23.tar.gz
Put back Python 3 support, version history, and tags
In backout commit e55523746e8b, the reasons of the backout are: * No one to maintain the hbs language, it would be outdated eventually. * No need for these management scrtips anymore.
Diffstat (limited to 'smartypants.py')
-rw-r--r--smartypants.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/smartypants.py b/smartypants.py
index 6874030..e18e282 100644
--- a/smartypants.py
+++ b/smartypants.py
@@ -228,6 +228,11 @@ To Do list
Version History
===============
+1.5_1.7: Fri, 09 Aug 2013 07:34:16 -0400
+ - Add HBS language translation. Patch by by Vera Djuraskovic from
+ Webhostinggeeks.com
+ - Add Python3 support.
+
1.5_1.6: Fri, 27 Jul 2007 07:06:40 -0400
- Fixed bug where blocks of precious unalterable text was instead
interpreted. Thanks to Le Roux and Dirk van Oosterbosch.
@@ -857,7 +862,7 @@ if __name__ == "__main__":
from docutils.core import publish_string
docstring_html = publish_string(__doc__, writer_name='html')
- print docstring_html
+ print(docstring_html)
# Unit test output goes out stderr. No worries.