Skip to content

Commit f0f4d88

Browse files
committed
Update some comments
1 parent 822a9ad commit f0f4d88

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

cdblib/cdblib.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212

1313
# Structs for 32-bit databases
1414
read_2_le4 = Struct('<LL').unpack
15-
read_2_le8 = Struct('<QQ').unpack
15+
write_2_le4 = Struct('<LL').pack
1616

1717
# Structs for 64-bit databases
18-
write_2_le4 = Struct('<LL').pack
18+
read_2_le8 = Struct('<QQ').unpack
1919
write_2_le8 = Struct('<QQ').pack
2020

2121
# Encoders for keys

docs/versions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Version history
33

44
* `Version 3.0.0 <https://github.com/dw/python-pure-cdb/releases/tag/v2.3.0>`_
55
* This package now supports Python 3 only. For a version that works with Python 2, see `this older release <https://github.com/dw/python-pure-cdb/releases/tag/v2.2.0>`
6-
* Added `python-cdb` compatibility module.
6+
* Added the `python-cdb` compatibility module
77
* `Version 2.2.0 <https://github.com/dw/python-pure-cdb/releases/tag/v2.2.0>`_
88
* Added non-`strict` mode for convenience when using non-binary keys.
99
* API docs are now available at ReadTheDocs.

0 commit comments

Comments
 (0)