本文整理汇总了Python中sphinx.pycode.parser.Parser类的典型用法代码示例。如果您正苦于以下问题:Python Parser类的具体用法?Python Parser怎么用?Python Parser使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Parser类的18个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: test_class
def test_class():
source = ('class Foo(object):\n'
' attr1 = None #: comment1\n'
' attr2 = None #: comment2\n'
'\n'
' def __init__(self):\n'
' self.a = 1 + 1 #: comment3\n'
' self.attr2 = 1 + 1 #: overrided\n'
' b = 1 + 1 #: comment5\n'
'\n'
' def some_method(self):\n'
' c = 1 + 1 #: comment6\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {('Foo', 'attr1'): 'comment1',
('Foo', 'a'): 'comment3',
('Foo', 'attr2'): 'overrided'}
assert parser.definitions == {'Foo': ('class', 1, 11),
'Foo.__init__': ('def', 5, 8),
'Foo.some_method': ('def', 10, 11)}
assert parser.deforders == {'Foo': 0,
'Foo.attr1': 1,
'Foo.__init__': 3,
'Foo.a': 4,
'Foo.attr2': 5,
'Foo.some_method': 6}
开发者ID:hagenw,项目名称:sphinx,代码行数:26,代码来源:test_pycode_parser.py
示例2: test_formfeed_char
def test_formfeed_char():
source = ('class Foo:\n'
'\f\n'
' attr = 1234 #: comment\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {('Foo', 'attr'): 'comment'}
开发者ID:mgeier,项目名称:sphinx,代码行数:7,代码来源:test_pycode_parser.py
示例3: test_obj_assignment
def test_obj_assignment():
source = ('obj = SomeObject() #: some object\n'
'obj.attr = 1 #: attr1\n'
'obj.attr.attr = 1 #: attr2\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {('', 'obj'): 'some object'}
assert parser.definitions == {}
开发者ID:hagenw,项目名称:sphinx,代码行数:8,代码来源:test_pycode_parser.py
示例4: test_annotated_assignment_py36
def test_annotated_assignment_py36():
source = ('a: str = "Sphinx" #: comment\n'
'b: int = 1\n'
'"""string on next line"""')
parser = Parser(source)
parser.parse()
assert parser.comments == {('', 'a'): 'comment',
('', 'b'): 'string on next line'}
assert parser.definitions == {}
开发者ID:papadeltasierra,项目名称:sphinx,代码行数:9,代码来源:test_pycode_parser.py
示例5: test_class_comment
def test_class_comment():
source = ('import logging\n'
'logger = logging.getLogger(__name__)\n'
'\n'
'class Foo(object):\n'
' """Bar"""\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {}
assert parser.definitions == {'Foo': ('class', 4, 5)}
开发者ID:AWhetter,项目名称:sphinx,代码行数:10,代码来源:test_pycode_parser.py
示例6: test_nested_function
def test_nested_function():
source = ('def some_function():\n'
' a = 1 + 1 #: comment1\n'
'\n'
' def inner_function():\n'
' b = 1 + 1 #: comment2\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {}
assert parser.definitions == {'some_function': ('def', 1, 5)}
assert parser.deforders == {'some_function': 0}
开发者ID:hagenw,项目名称:sphinx,代码行数:11,代码来源:test_pycode_parser.py
示例7: test_function
def test_function():
source = ('def some_function():\n'
' """docstring"""\n'
' a = 1 + 1 #: comment1\n'
'\n'
' b = a #: comment2\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {}
assert parser.definitions == {'some_function': ('def', 1, 5)}
assert parser.deforders == {'some_function': 0}
开发者ID:hagenw,项目名称:sphinx,代码行数:11,代码来源:test_pycode_parser.py
示例8: test_class_uses_non_self
def test_class_uses_non_self():
source = ('class Foo(object):\n'
' def __init__(this):\n'
' this.a = 1 + 1 #: comment\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {('Foo', 'a'): 'comment'}
assert parser.definitions == {'Foo': ('class', 1, 3),
'Foo.__init__': ('def', 2, 3)}
assert parser.deforders == {'Foo': 0,
'Foo.__init__': 1,
'Foo.a': 2}
开发者ID:hagenw,项目名称:sphinx,代码行数:12,代码来源:test_pycode_parser.py
示例9: test_container_assignment
def test_container_assignment():
source = ('l = [] #: list\n'
'l[1] = True #: list assignment\n'
'l[0:0] = [] #: list assignment\n'
'l[_from:_to] = [] #: list assignment\n'
'd = {} #: dict\n'
'd["doc"] = 1 #: dict assignment\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {('', 'l'): 'list',
('', 'd'): 'dict'}
assert parser.definitions == {}
开发者ID:hagenw,项目名称:sphinx,代码行数:12,代码来源:test_pycode_parser.py
示例10: test_complex_assignment_py3
def test_complex_assignment_py3():
source = ('a, *b, c = (1, 2, 3, 4) #: unpack assignment\n'
'd, *self.attr = (5, 6, 7) #: unpack assignment2\n'
'e, *f[0] = (8, 9, 0) #: unpack assignment3\n'
)
parser = Parser(source)
parser.parse()
assert parser.comments == {('', 'a'): 'unpack assignment',
('', 'b'): 'unpack assignment',
('', 'c'): 'unpack assignment',
('', 'd'): 'unpack assignment2',
('', 'e'): 'unpack assignment3',
}
assert parser.definitions == {}
开发者ID:AWhetter,项目名称:sphinx,代码行数:14,代码来源:test_pycode_parser.py
示例11: test_complex_assignment
def test_complex_assignment():
source = ('a = 1 + 1; b = a #: compound statement\n'
'c, d = (1, 1) #: unpack assignment\n'
'e = True #: first assignment\n'
'e = False #: second assignment\n'
'f = g = None #: multiple assignment at once\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {('', 'b'): 'compound statement',
('', 'c'): 'unpack assignment',
('', 'd'): 'unpack assignment',
('', 'e'): 'second assignment',
('', 'f'): 'multiple assignment at once',
('', 'g'): 'multiple assignment at once'}
assert parser.definitions == {}
开发者ID:hagenw,项目名称:sphinx,代码行数:15,代码来源:test_pycode_parser.py
示例12: test_comment_picker_multiline_string
def test_comment_picker_multiline_string():
source = ('class Foo(object):\n'
' a = None\n'
' """multiline\n'
' docstring\n'
' """\n'
' b = None\n'
' """\n'
' docstring\n'
' starts with::\n'
'\n'
' empty line"""\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {('Foo', 'a'): 'multiline\ndocstring',
('Foo', 'b'): 'docstring\nstarts with::\n\n empty line'}
开发者ID:hagenw,项目名称:sphinx,代码行数:16,代码来源:test_pycode_parser.py
示例13: test_nested_class
def test_nested_class():
source = ('class Foo(object):\n'
' attr1 = None #: comment1\n'
'\n'
' class Bar(object):\n'
' attr2 = None #: comment2\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {('Foo', 'attr1'): 'comment1',
('Foo.Bar', 'attr2'): 'comment2'}
assert parser.definitions == {'Foo': ('class', 1, 5),
'Foo.Bar': ('class', 4, 5)}
assert parser.deforders == {'Foo': 0,
'Foo.attr1': 1,
'Foo.Bar': 2,
'Foo.Bar.attr2': 3}
开发者ID:hagenw,项目名称:sphinx,代码行数:16,代码来源:test_pycode_parser.py
示例14: parse
def parse(self):
# type: () -> None
"""Parse the source code."""
try:
parser = Parser(self.code, self.encoding)
parser.parse()
self.attr_docs = {}
for (scope, comment) in iteritems(parser.comments):
if comment:
self.attr_docs[scope] = comment.splitlines() + ['']
else:
self.attr_docs[scope] = ['']
self.tags = parser.definitions
self.tagorder = parser.deforders
except Exception as exc:
raise PycodeError('parsing %r failed: %r' % (self.srcname, exc))
开发者ID:AWhetter,项目名称:sphinx,代码行数:18,代码来源:__init__.py
示例15: test_comment_picker_basic
def test_comment_picker_basic():
source = ('a = 1 + 1 #: assignment\n'
'b = 1 +\\\n 1 #: assignment including a CR\n'
'c = (1 +\n 1) #: tuple \n'
'd = {1, \n 1} #: set\n'
'e = [1, \n 1] #: list #: additional comment\n'
'f = "abc"\n'
'#: string; comment on next line (ignored)\n'
'g = 1.0\n'
'"""float; string on next line"""\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {('', 'a'): 'assignment',
('', 'b'): 'assignment including a CR',
('', 'c'): 'tuple ',
('', 'd'): ' set',
('', 'e'): 'list #: additional comment',
('', 'g'): 'float; string on next line'}
开发者ID:hagenw,项目名称:sphinx,代码行数:18,代码来源:test_pycode_parser.py
示例16: test_decorators
def test_decorators():
source = ('@deco\n'
'def func1(): pass\n'
'\n'
'@deco(param1, param2)\n'
'def func2(): pass\n'
'\n'
'@deco1\n'
'@deco2\n'
'def func3(): pass\n'
'\n'
'@deco\n'
'class Foo():\n'
' @deco1\n'
' @deco2\n'
' def method(self): pass\n')
parser = Parser(source)
parser.parse()
assert parser.definitions == {'func1': ('def', 1, 2),
'func2': ('def', 4, 5),
'func3': ('def', 7, 9),
'Foo': ('class', 11, 15),
'Foo.method': ('def', 13, 15)}
开发者ID:hagenw,项目名称:sphinx,代码行数:23,代码来源:test_pycode_parser.py
示例17: test_complex_assignment
def test_complex_assignment():
source = ('a = 1 + 1; b = a #: compound statement\n'
'c, d = (1, 1) #: unpack assignment\n'
'e = True #: first assignment\n'
'e = False #: second assignment\n'
'f = g = None #: multiple assignment at once\n'
'(theta, phi) = (0, 0.5) #: unpack assignment via tuple\n'
'[x, y] = (5, 6) #: unpack assignment via list\n'
)
parser = Parser(source)
parser.parse()
assert parser.comments == {('', 'b'): 'compound statement',
('', 'c'): 'unpack assignment',
('', 'd'): 'unpack assignment',
('', 'e'): 'second assignment',
('', 'f'): 'multiple assignment at once',
('', 'g'): 'multiple assignment at once',
('', 'theta'): 'unpack assignment via tuple',
('', 'phi'): 'unpack assignment via tuple',
('', 'x'): 'unpack assignment via list',
('', 'y'): 'unpack assignment via list',
}
assert parser.definitions == {}
开发者ID:AWhetter,项目名称:sphinx,代码行数:23,代码来源:test_pycode_parser.py
示例18: test_comment_picker_location
def test_comment_picker_location():
# multiple "before" comments
source = ('#: comment before assignment1\n'
'#:\n'
'#: comment before assignment2\n'
'a = 1 + 1\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {('', 'a'): ('comment before assignment1\n'
'\n'
'comment before assignment2')}
# before and after comments
source = ('#: comment before assignment\n'
'a = 1 + 1 #: comment after assignment\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {('', 'a'): 'comment after assignment'}
# after comment and next line string
source = ('a = 1 + 1\n #: comment after assignment\n'
'"""string on next line"""\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {('', 'a'): 'string on next line'}
# before comment and next line string
source = ('#: comment before assignment\n'
'a = 1 + 1\n'
'"""string on next line"""\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {('', 'a'): 'string on next line'}
# before comment, after comment and next line string
source = ('#: comment before assignment\n'
'a = 1 + 1 #: comment after assignment\n'
'"""string on next line"""\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {('', 'a'): 'string on next line'}
# inside __init__ method
source = ('class Foo(object):\n'
' def __init__(self):\n'
' #: comment before assignment\n'
' self.attr1 = None\n'
' self.attr2 = None #: comment after assignment\n'
'\n'
' #: comment for attr3(1)\n'
' self.attr3 = None #: comment for attr3(2)\n'
' """comment for attr3(3)"""\n')
parser = Parser(source)
parser.parse()
assert parser.comments == {('Foo', 'attr1'): 'comment before assignment',
('Foo', 'attr2'): 'comment after assignment',
('Foo', 'attr3'): 'comment for attr3(3)'}
开发者ID:hagenw,项目名称:sphinx,代码行数:57,代码来源:test_pycode_parser.py
注:本文中的sphinx.pycode.parser.Parser类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论