-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e26497b
commit 97203be
Showing
7 changed files
with
427 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
## New features | ||
|
||
## Backward incompatible | ||
|
||
## Bug fixes | ||
|
||
# v1.13.5.0 | ||
|
||
## New features | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -189,15 +189,15 @@ def __init__( self , | |
# ========================================================================== | ||
## compress (bzip2) the item using <code>bz2.compress</code> | ||
def compress_item ( self , value ) : | ||
"""Compress (zip) the item using ``bz2.compress'' | ||
""" Compress (zip) the item using ``bz2.compress'' | ||
- see bz2.compress | ||
""" | ||
return bz2.compress ( self.pickle ( value ) , self.compresslevel ) | ||
|
||
# ========================================================================= | ||
## uncompres (bzip2) the item using <code>bz2.decompress</code> | ||
def uncompress_item ( self , value ) : | ||
"""Uncompress (bzip2) the item using ``bz2.decompress'' | ||
""" Uncompress (bzip2) the item using ``bz2.decompress'' | ||
- see bz2.decompress | ||
""" | ||
return self.unpickle ( bz2.decompress ( value ) ) | ||
|
@@ -207,7 +207,7 @@ def uncompress_item ( self , value ) : | |
# @author Vanya BELYAEV [email protected] | ||
# @date 2010-04-30 | ||
def open ( dbname , mode = 'c' , **kwargs ) : | ||
"""Open a persistent dictionary for reading and writing. | ||
""" Open a persistent dictionary for reading and writing. | ||
The filename parameter is the base filename for the underlying | ||
database. As a side-effect, an extension may be added to the | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.