27 lines
478 B
Python
27 lines
478 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
|
|
from .operator import Operator
|
|
|
|
|
|
class Par(Operator):
|
|
|
|
""" The operator ( """
|
|
|
|
_CARACT = {
|
|
"operator": "(",
|
|
"name": "par",
|
|
"priority": 0,
|
|
"arity": 0,
|
|
}
|
|
|
|
def __init__(self):
|
|
""" Initiate Par Operator """
|
|
super(Par, self).__init__(**self._CARACT)
|
|
|
|
# -----------------------------
|
|
# Reglages pour 'vim'
|
|
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
|
# cursor: 16 del
|