Skip to content

Commit b34cb40

Browse files
committed
increased coverage by 1% to 91%
1 parent c389d77 commit b34cb40

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Ver. 0.7c3 - 2012 May 08
4949
* Added :mod:`stdnet.utils.path`.
5050
* Added a Lua test suite for testing stand alone scripts. Requires lunatest_.
5151
* PEP 386-compliant version number.
52-
* **573 regression tests** with **90%** coverage.
52+
* **574 regression tests** with **91%** coverage.
5353

5454
.. _vers06:
5555

stdnet/lib/redis/connection.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def parse(self, data):
201201
if self.response is not False:
202202
self.close()
203203

204-
def execute(self):
204+
def execute(self): # pragma : no cover
205205
raise NotImplementedError()
206206

207207

@@ -413,9 +413,6 @@ def __pack_gen(self, args):
413413
yield value
414414
yield crlf
415415

416-
def _decode(self, value):
417-
return value.decode(self.encoding,self.encoding_errors)
418-
419416
def pack_command(self, *args):
420417
"Pack a series of arguments into a value Redis command"
421418
return b''.join(self.__pack_gen(args))

0 commit comments

Comments
 (0)