当前位置: 首页>>代码示例>>Python>>正文


Python ReSTStyle.spaces方法代码示例

本文整理汇总了Python中bcdoc.style.ReSTStyle.spaces方法的典型用法代码示例。如果您正苦于以下问题:Python ReSTStyle.spaces方法的具体用法?Python ReSTStyle.spaces怎么用?Python ReSTStyle.spaces使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在bcdoc.style.ReSTStyle的用法示例。


在下文中一共展示了ReSTStyle.spaces方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_spaces

# 需要导入模块: from bcdoc.style import ReSTStyle [as 别名]
# 或者: from bcdoc.style.ReSTStyle import spaces [as 别名]
 def test_spaces(self):
     style = ReSTStyle(None, 4)
     self.assertEqual(style.spaces(), '')
     style.indent()
     self.assertEqual(style.spaces(), '    ')
     style.indent()
     self.assertEqual(style.spaces(), '        ')
     style.dedent()
     self.assertEqual(style.spaces(), '    ')
     style.dedent()
     self.assertEqual(style.spaces(), '')
     style.dedent()
     self.assertEqual(style.spaces(), '')
开发者ID:boto,项目名称:bcdoc,代码行数:15,代码来源:test_style.py

示例2: ReSTDocument

# 需要导入模块: from bcdoc.style import ReSTStyle [as 别名]
# 或者: from bcdoc.style.ReSTStyle import spaces [as 别名]
class ReSTDocument(object):

    def __init__(self, target='man'):
        self.style = ReSTStyle(self)
        self.target = target
        self.parser = DocStringParser(self)
        self.keep_data = True
        self.do_translation = False
        self.translation_map = {}
        self.hrefs = {}
        self._writes = []
        self._last_doc_string = None

    def _write(self, s):
        if self.keep_data and s is not None:
            self._writes.append(s)

    def write(self, content):
        """
        Write content into the document.
        """
        self._write(content)

    def writeln(self, content):
        """
        Write content on a newline.
        """
        self._write('%s%s\n' % (self.style.spaces(), content))

    def peek_write(self):
        """
        Returns the last content written to the document without
        removing it from the stack.
        """
        return self._writes[-1]

    def pop_write(self):
        """
        Removes and returns the last content written to the stack.
        """
        return self._writes.pop()

    def push_write(self, s):
        """
        Places new content on the stack.
        """
        self._writes.append(s)

    def getvalue(self):
        """
        Returns the current content of the document as a string.
        """
        if self.hrefs:
            self.style.new_paragraph()
            for refname, link in self.hrefs.items():
                self.style.link_target_definition(refname, link)
        return ''.join(self._writes).encode('utf-8')

    def translate_words(self, words):
        return [self.translation_map.get(w, w) for w in words]

    def handle_data(self, data):
        if data and self.keep_data:
            self._write(data)

    def include_doc_string(self, doc_string):
        if doc_string:
            try:
                start = len(self._writes)
                self.parser.feed(doc_string)
                end = len(self._writes)
                self._last_doc_string = (start, end)
            except Exception:
                LOG.debug('Error parsing doc string', exc_info=True)
                LOG.debug(doc_string)

    def remove_last_doc_string(self):
        # Removes all writes inserted by last doc string
        if self._last_doc_string is not None:
            start, end = self._last_doc_string
            del self._writes[start:end]
开发者ID:boto,项目名称:bcdoc,代码行数:83,代码来源:restdoc.py


注:本文中的bcdoc.style.ReSTStyle.spaces方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。