diff options
author | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-05-06 21:01:51 (GMT) |
---|---|---|
committer | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-05-06 21:01:51 (GMT) |
commit | bc459bb484a48ae6d04ea0a57e8924e7fee2e628 (patch) | |
tree | e8831c13263c1bc86fc2c56c6a575a85cc0c6522 /Lib/lzma.py | |
parent | f55b329edc911dde495abfcfe0b052040d101cc5 (diff) | |
download | cpython-bc459bb484a48ae6d04ea0a57e8924e7fee2e628.zip cpython-bc459bb484a48ae6d04ea0a57e8924e7fee2e628.tar.gz cpython-bc459bb484a48ae6d04ea0a57e8924e7fee2e628.tar.bz2 |
Rename lzma.check_is_supported() to is_check_supported() to avoid grammatical confusion.
Diffstat (limited to 'Lib/lzma.py')
-rw-r--r-- | Lib/lzma.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lzma.py b/Lib/lzma.py index 5adf51f..1c101f7 100644 --- a/Lib/lzma.py +++ b/Lib/lzma.py @@ -18,7 +18,7 @@ __all__ = [ "MODE_FAST", "MODE_NORMAL", "PRESET_DEFAULT", "PRESET_EXTREME", "LZMACompressor", "LZMADecompressor", "LZMAFile", "LZMAError", - "compress", "decompress", "check_is_supported", + "compress", "decompress", "is_check_supported", "encode_filter_properties", "decode_filter_properties", ] |