Skip to content

Commit

Permalink
Comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
eerimoq committed Dec 17, 2015
1 parent d62274c commit 0e4c3c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bitstruct.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def pack(fmt, *args):
:param args: Variable argument list of values to pack.
:returns: Bytearray of packed values.
`fmt` is a string of type-length pairs. There are five types; 'u',
`fmt` is a string of type-length pairs. There are six types; 'u',
's', 'f', 'b', 'r' and 'p'. Length is the number of bits to pack
the value into.
Expand Down Expand Up @@ -136,7 +136,7 @@ def unpack(fmt, data):
according to the given format. The result is a tuple even if it
contains exactly one item.
:param fmt: Bitstruct format string.
:param fmt: Bitstruct format string. See pack() for details.
:param data: Bytearray of values to unpack.
:returns: Tuple of unpacked values.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup

setup(name='bitstruct',
version='2.0.1',
version='2.0.2',
description=('This module performs conversions between Python values '
'and C bit field structs represented as Python '
'bytearrays.'),
Expand Down

0 comments on commit 0e4c3c4

Please sign in to comment.