Skip to content

Commit

Permalink
Add coverage exclusions
Browse files Browse the repository at this point in the history
  • Loading branch information
faucamp committed Jul 10, 2013
1 parent 3c4b39d commit d9b10e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gsmmodem/modem.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
if PYTHON_VERSION >= 3:
xrange = range
dictValuesIter = dict.values
else:
else: #pragma: no cover
dictValuesIter = dict.itervalues

class GsmModem(SerialComms):
Expand Down
2 changes: 1 addition & 1 deletion tools/gsmtermlib/trie.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
dictKeysIter = dict.keys
dictItemsIter = dict.items
dictValuesIter = dict.values
else:
else: #pragma: no cover
dictKeysIter = dict.iterkeys
dictItemsIter = dict.iteritems
dictValuesIter = dict.itervalues
Expand Down

0 comments on commit d9b10e3

Please sign in to comment.