forked from pool/python-bitstring
Accepting request 156426 from home:posophe:branches:devel:languages:python
Update OBS-URL: https://build.opensuse.org/request/show/156426 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bitstring?expand=0&rev=4
This commit is contained in:
committed by
Git OBS Bridge
parent
a17d5b6263
commit
653157fc28
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1ff42c7192b694774e09ad70a6dd40a0e655ec022ed4f090c929ea69f21b8ebc
|
||||
size 618856
|
||||
3
bitstring-3.1.0.zip
Normal file
3
bitstring-3.1.0.zip
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7cc3d34f605f80162e7441f90b9ef4f182306a946bbab806e83de31f48a4b38a
|
||||
size 620245
|
||||
@@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 26 13:12:50 UTC 2013 - p.drouand@gmail.com
|
||||
|
||||
- Update to version 3.1.0:
|
||||
* New 'pad' token
|
||||
This token can be used in reads and when packing/unpacking to indicate that
|
||||
you don't care about the contents of these bits. Any padding bits will just
|
||||
be skipped over when reading/unpacking or zero-filled when packing.
|
||||
>>> a, b = s.readlist('pad:5, uint:3, pad:1, uint:3')
|
||||
Here only two items are returned in the list - the padding bits are ignored.
|
||||
* New clear and copy convenience methods
|
||||
These methods have been introduced in Python 3.3 for lists and bytearrays,
|
||||
as more obvious ways of clearing and copying, and we mirror that change here.
|
||||
t = s.copy() is equivalent to t = s[:], and s.clear() is equivalent to del s[:].
|
||||
* Some bug fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 11 14:31:13 UTC 2013 - p.drouand@gmail.com
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
|
||||
Name: python-bitstring
|
||||
Version: 3.0.2
|
||||
Version: 3.1.0
|
||||
Release: 0
|
||||
Url: http://python-bitstring.googlecode.com
|
||||
Summary: Simple construction, analysis and modification of binary data
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
|
||||
Name: python3-bitstring
|
||||
Version: 3.0.2
|
||||
Version: 3.1.0
|
||||
Release: 0
|
||||
Url: http://python-bitstring.googlecode.com
|
||||
Summary: Simple construction, analysis and modification of binary data
|
||||
|
||||
Reference in New Issue
Block a user