Delete dead code, note porting.

This commit is contained in:
Itamar Turner-Trauring 2020-10-30 11:21:14 -04:00
parent c48228a988
commit 36d1056ad0

View File

@ -1,6 +1,8 @@
"""
This module contains classes and functions to implement and manage
a node for Tahoe-LAFS.
Ported to Python 3.
"""
from __future__ import absolute_import
from __future__ import division
@ -425,17 +427,6 @@ class _Config(object):
os.path.join(self._basedir, *args)
)
@staticmethod
def _contains_unescaped_hash(item):
characters = iter(item)
for c in characters:
if c == '\\':
next(characters)
elif c == '#':
return True
return False
def create_tub_options(config):
"""