Files
mariadb-connector-python/mariadb/constants/__init__.py
Georg Richter 7df428ecf8 Moved Objects from c to python code
Indicator, BINARY, NUMBER, STRING and DATE objects were moved
to python code
2020-11-30 16:49:16 +01:00

10 lines
183 B
Python

class FOO():
def __init__(self, indicator):
self.indicator = indicator
FOO_NULL = FOO(1)
FOO_DEFAULT = FOO(2)
__all__ = ["CLIENT", "CURSOR", "FIELD_TYPE", "INDICATOR"]