Message3967

Author amak
Recipients amak, fwierzbicki, kam, pjenvey
Date 2008-12-18.22:45:37
SpamBayes Score 0.0041828165
Marked as misclassified No
Message-id <1229640337.87.0.975277221809.issue1171@psf.upfronthosting.co.za>
In-reply-to
Content
I must confess that I was a little perplexed by the change myself,
especially when you look at the wrap() code

    public static PyFile wrap(InputStream is, int bufsize) {
        return new PyFile(is, bufsize);
    }

    public static PyFile wrap(InputStream is) {
        return wrap(is, -1);
    }

This could have been dealt with by adding extra constructors for
PyFile(InputStream) with defaults for the bufsize parameter.
History
Date User Action Args
2008-12-18 22:45:37amaksetmessageid: <1229640337.87.0.975277221809.issue1171@psf.upfronthosting.co.za>
2008-12-18 22:45:37amaksetrecipients: + amak, fwierzbicki, pjenvey, kam
2008-12-18 22:45:37amaklinkissue1171 messages
2008-12-18 22:45:37amakcreate