Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/docutils/parsers/null.py @ 2:6af9afd405e9 draft
"planemo upload commit 0a63dd5f4d38a1f6944587f52a8cd79874177fc1"
author | shellac |
---|---|
date | Thu, 14 May 2020 14:56:58 -0400 |
parents | 26e78fe6e8c4 |
children |
comparison
equal
deleted
inserted
replaced
1:75ca89e9b81c | 2:6af9afd405e9 |
---|---|
1 # $Id: null.py 4564 2006-05-21 20:44:42Z wiemann $ | |
2 # Author: Martin Blais <blais@furius.ca> | |
3 # Copyright: This module has been placed in the public domain. | |
4 | |
5 """A do-nothing parser.""" | |
6 | |
7 from docutils import parsers | |
8 | |
9 | |
10 class Parser(parsers.Parser): | |
11 | |
12 """A do-nothing parser.""" | |
13 | |
14 supported = ('null',) | |
15 | |
16 config_section = 'null parser' | |
17 config_section_dependencies = ('parsers',) | |
18 | |
19 def parse(self, inputstring, document): | |
20 pass |