summaryrefslogtreecommitdiff
path: root/creole/parser/creol2html_rules.py
diff options
context:
space:
mode:
Diffstat (limited to 'creole/parser/creol2html_rules.py')
-rw-r--r--creole/parser/creol2html_rules.py9
1 files changed, 3 insertions, 6 deletions
diff --git a/creole/parser/creol2html_rules.py b/creole/parser/creol2html_rules.py
index 4cb1e2a..07754c9 100644
--- a/creole/parser/creol2html_rules.py
+++ b/creole/parser/creol2html_rules.py
@@ -1,6 +1,3 @@
-# coding: utf-8
-
-
"""
Creole Rules for parser
~~~~~~~~~~~~~~~~~~~~~~~
@@ -13,7 +10,7 @@
import re
-class InlineRules(object):
+class InlineRules:
"""
All inline rules
"""
@@ -97,7 +94,7 @@ class InlineRules(object):
char = r'(?P<char> . )'
-class BlockRules(object):
+class BlockRules:
"""
All used block rules.
"""
@@ -169,7 +166,7 @@ class BlockRules(object):
)
-class SpecialRules(object):
+class SpecialRules:
"""
re rules witch not directly used as inline/block rules.
"""