@@ -48,9 +48,9 @@ copyright = u'2012 Ben Kurtovic' | |||||
# built documents. | # built documents. | ||||
# | # | ||||
# The short X.Y version. | # The short X.Y version. | ||||
version = '0.1' | |||||
version = '0.2' | |||||
# The full version, including alpha/beta/rc tags. | # The full version, including alpha/beta/rc tags. | ||||
release = '0.1.1' | |||||
release = '0.2.dev' | |||||
# The language for content autogenerated by Sphinx. Refer to documentation | # The language for content autogenerated by Sphinx. Refer to documentation | ||||
# for a list of supported languages. | # for a list of supported languages. | ||||
@@ -1,4 +1,4 @@ | |||||
MWParserFromHell v0.1 Documentation | |||||
MWParserFromHell v0.2 Documentation | |||||
=================================== | =================================== | ||||
:py:mod:`mwparserfromhell` (the *MediaWiki Parser from Hell*) is a Python | :py:mod:`mwparserfromhell` (the *MediaWiki Parser from Hell*) is a Python | ||||
@@ -31,7 +31,7 @@ from __future__ import unicode_literals | |||||
__author__ = "Ben Kurtovic" | __author__ = "Ben Kurtovic" | ||||
__copyright__ = "Copyright (C) 2012 Ben Kurtovic" | __copyright__ = "Copyright (C) 2012 Ben Kurtovic" | ||||
__license__ = "MIT License" | __license__ = "MIT License" | ||||
__version__ = "0.1.1" | |||||
__version__ = "0.2.dev" | |||||
__email__ = "ben.kurtovic@verizon.net" | __email__ = "ben.kurtovic@verizon.net" | ||||
from . import nodes, parser, smart_list, string_mixin, wikicode | from . import nodes, parser, smart_list, string_mixin, wikicode | ||||
@@ -86,7 +86,7 @@ class Tokenizer(object): | |||||
def _pop(self, keep_context=False): | def _pop(self, keep_context=False): | ||||
"""Pop the current stack/context/textbuffer, returing the stack. | """Pop the current stack/context/textbuffer, returing the stack. | ||||
If *keep_context is ``True``, then we will replace the underlying | |||||
If *keep_context* is ``True``, then we will replace the underlying | |||||
stack's context with the current stack's. | stack's context with the current stack's. | ||||
""" | """ | ||||
self._push_textbuffer() | self._push_textbuffer() | ||||