aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/odict.py
Commit message (Collapse)AuthorAgeFilesLines
* odict.py: remove usage of iteritems_compat which was not workingDmitry Shachnev2013-03-231-8/+3
| | | | | | | | | I've added iteritems_compat function in one of my previous pull requests, which was failing with: ./markdown/odict.py:106: undefined name 'iteritems_compat' This commit drops usage of that function.
* Fix some pyflakes-undefined-name warningsDmitry Shachnev2013-03-151-3/+10
|
* Now using universal code for Python 2 & 3.Waylan Limberg2013-02-271-40/+62
| | | | | | | | | | The most notable changes are the use of unicode_literals and absolute_imports. Actually, absolute_imports was the biggest deal as it gives us relative imports. For the first time extensions import markdown relative to themselves. This allows other packages to embed the markdown lib in a subdir of their project and still be able to use our extensions.
* Fix all pyflakes unused-import/unused-variable warningsDmitry Shachnev2012-11-091-1/+1
|
* Merge branch 'master' of github.com:Scorpil/Python-MarkdownScorpil2012-07-201-2/+1
|\ | | | | | | | | Conflicts: markdown/odict.py
| * Added more expressive description of an error.Scorpil2012-07-201-1/+5
| |
* | Added more expressive description of an error.Scorpil2012-07-201-1/+5
|/
* Fixed 113. We still support Python 2.5 until Markdown version 2.3.Waylan Limberg2012-07-121-1/+1
|
* Fixed #85. Odict now handles link errors correctly.Waylan Limberg2012-03-191-3/+3
| | | | Also added a test. Thanks for the report.
* More refactoring.Yuri Takhteyev2008-11-181-0/+162