aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/vk/utils/tracking/db/backend/null.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-06-18 23:56:48 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-06-18 23:56:48 +0300
commit48b19f2c9fec8a7e2f26ddd058c794d4f5a33894 (patch)
tree23f397fdad7a38ea2f7d3890593fddedd0572867 /vk/utils/tracking/db/backend/null.py
parentREADME update (diff)
downloadvk-scripts-48b19f2c9fec8a7e2f26ddd058c794d4f5a33894.tar.gz
vk-scripts-48b19f2c9fec8a7e2f26ddd058c794d4f5a33894.zip
vk.utils.tracking -> vk.tracking
Diffstat (limited to 'vk/utils/tracking/db/backend/null.py')
-rw-r--r--vk/utils/tracking/db/backend/null.py37
1 files changed, 0 insertions, 37 deletions
diff --git a/vk/utils/tracking/db/backend/null.py b/vk/utils/tracking/db/backend/null.py
deleted file mode 100644
index 139a9f0..0000000
--- a/vk/utils/tracking/db/backend/null.py
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2016 Egor Tensin <Egor.Tensin@gmail.com>
-# This file is licensed under the terms of the MIT License.
-# See LICENSE.txt for details.
-
-from collections.abc import Iterable
-
-class Writer:
- def __init__(self, fd):
- pass
-
- def __enter__(self):
- return self
-
- def __exit__(self, *args):
- pass
-
- def on_initial_status(self, user):
- pass
-
- def on_status_update(self, user):
- pass
-
- def on_connection_error(self, e):
- pass
-
-class Reader(Iterable):
- def __init__(self, fd):
- pass
-
- def __enter__(self):
- return self
-
- def __exit__(self, *args):
- pass
-
- def __iter__(self):
- pass