diff options
author | Toshio Kuratomi <toshio@fedoraproject.org> | 2010-07-05 22:39:33 -0400 |
---|---|---|
committer | Toshio Kuratomi <toshio@fedoraproject.org> | 2010-07-05 22:39:33 -0400 |
commit | ac77988cc6434cf14e1c07e6955ca00a13e50ed0 (patch) | |
tree | 29fbac50ac702ffcecd9a4caf001af3f39fb1697 | |
parent | b50560edc707241b236f9d6c3f33edcf09d7cf33 (diff) | |
download | markdown-ac77988cc6434cf14e1c07e6955ca00a13e50ed0.tar.gz markdown-ac77988cc6434cf14e1c07e6955ca00a13e50ed0.tar.bz2 markdown-ac77988cc6434cf14e1c07e6955ca00a13e50ed0.zip |
Establish backwards compatibility
-rw-r--r-- | markdown/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/markdown/__init__.py b/markdown/__init__.py index 5743c9b..ac11f1d 100644 --- a/markdown/__init__.py +++ b/markdown/__init__.py @@ -74,6 +74,12 @@ import postprocessors import blockparser import odict +# For backwards compatibility in the 2.0.x series +# The things defined in these modules started off in __init__.py so third +# party code might need to access them here. +from misc import * +from misc_logging import * + # Adds the ability to output html4 import html4 |