Code Monkey home page Code Monkey logo

Comments (1)

isislovecruft avatar isislovecruft commented on September 13, 2024

Hello, @revogit!

The documentation for the encrypt() function states that it expects a string argument for the compress_algo= parameter, and states which ones are allowed:

        :param str compress_algo: The compression algorithm to use. Can be one
            of ``'ZLIB'``, ``'BZIP2'``, ``'ZIP'``, or ``'Uncompressed'``.

Using parameters in ways that they're not documented as being capable of handling produces errors, yes. :)

For your question about the ioe.message thing: using BaseException.message was deprecated in Python2.6, so no, we don't need syntax like that. (I do still have to support Python2.6 because that's what most OSX users have by default, and I still certainly have to support Python2.7, unfortunately.) However, the line you pointed at wasn't even in python-gnupg when you made this issue… my git blame shows that it was last changed by @Zigg in March:

603379eb gnupg/_util.py (Isis Lovecruft    2013-06-28 06:40:09 +0000 152)         except IOError as ioe:
0bc97dd4 gnupg/util.py  (Isis Lovecruft    2013-04-17 22:43:53 +0000 153)             # Can get 'broken pipe' errors even when all data was sent
3be2697a gnupg/_util.py (Matt Behrens      2014-03-30 19:53:45 -0400 154)             if 'Broken pipe' in str(ioe):
603379eb gnupg/_util.py (Isis Lovecruft    2013-06-28 06:40:09 +0000 155)                 log.error('Error sending data: Broken pipe')
603379eb gnupg/_util.py (Isis Lovecruft    2013-06-28 06:40:09 +0000 156)             else:
603379eb gnupg/_util.py (Isis Lovecruft    2013-06-28 06:40:09 +0000 157)                 log.exception(ioe)
0bc97dd4 gnupg/util.py  (Isis Lovecruft    2013-04-17 22:43:53 +0000 158)             break

However, @Zigg's commit wasn't merged until python-gnupg-1.2.6, sometime in late May 2014. So… it should be fixed now, @revogit. :)

from python-gnupg.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.