[thorstenp] remove statements without effect

This commit is contained in:
Yann Leboulanger 2008-10-20 15:20:51 +00:00
parent 98255a0671
commit 464f62d580
3 changed files with 2 additions and 4 deletions

View File

@ -485,8 +485,7 @@ class Socks5:
return -1
def get_file_contents(self, timeout):
''' read file contents from socket and write them to file ''', \
self.file_props['type'], self.file_props['sid']
''' read file contents from socket and write them to file '''
if self.file_props is None or \
('file-name' in self.file_props) is False:
self.file_props['error'] = -2

View File

@ -249,7 +249,6 @@ class Session:
features=Node('stream:features')
if NS_TLS in self.waiting_features:
features.T.starttls.setNamespace(NS_TLS)
features.T.starttls.T.required
if NS_SASL in self.waiting_features:
features.T.mechanisms.setNamespace(NS_SASL)
for mec in self._owner.SASL.mechanisms:

View File

@ -214,7 +214,7 @@ class IterableIPShell:
possibilities = self.IP.complete(split_line[-1])
try:
__builtins__.all
all(())
except AttributeError:
def all(iterable):
for element in iterable: