summaryrefslogtreecommitdiff
path: root/tester/rt/tftpy/__init__.py
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2020-08-26 13:38:54 +1000
committerChris Johns <chrisj@rtems.org>2020-09-01 09:18:04 +1000
commiteb3608133b41b9cb7b4dd55cb15d77691d2300c6 (patch)
tree3361e303477fdbc4a6a63f96054d5bcdf2ada133 /tester/rt/tftpy/__init__.py
parent37ad446d9dce3438d6d32e1caf56d3fdccdd2ad0 (diff)
tester: Change to a simpler TFTP server
- Add a simpler TFTP to allow parallel test hardware - Remove the imported tftpy server Closes #4063
Diffstat (limited to 'tester/rt/tftpy/__init__.py')
-rw-r--r--tester/rt/tftpy/__init__.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/tester/rt/tftpy/__init__.py b/tester/rt/tftpy/__init__.py
deleted file mode 100644
index 71b8e3d..0000000
--- a/tester/rt/tftpy/__init__.py
+++ /dev/null
@@ -1,27 +0,0 @@
-# vim: ts=4 sw=4 et ai:
-# -*- coding: utf8 -*-
-"""
-This library implements the tftp protocol, based on rfc 1350.
-http://www.faqs.org/rfcs/rfc1350.html
-At the moment it implements only a client class, but will include a server,
-with support for variable block sizes.
-
-As a client of tftpy, this is the only module that you should need to import
-directly. The TftpClient and TftpServer classes can be reached through it.
-"""
-
-
-import sys
-
-# Make sure that this is at least Python 2.7
-required_version = (2, 7)
-if sys.version_info < required_version:
- raise ImportError("Requires at least Python 2.7")
-
-from .TftpShared import *
-from . import TftpPacketTypes
-from . import TftpPacketFactory
-from .TftpClient import TftpClient
-from .TftpServer import TftpServer
-from . import TftpContexts
-from . import TftpStates